1// Copyright (c) 2012 The Chromium Authors. All rights reserved.
2// Use of this source code is governed by a BSD-style license that can be
3// found in the LICENSE file.
4
5#ifndef BASE_TEST_TEST_SWITCHES_H_
6#define BASE_TEST_TEST_SWITCHES_H_
7
8namespace switches {
9
10// All switches in alphabetical order. The switches should be documented
11// alongside the definition of their values in the .cc file.
12extern const char kTestLauncherBatchLimit[];
13extern const char kTestLauncherBotMode[];
14extern const char kTestLauncherDebugLauncher[];
15extern const char kTestLauncherForceRunBrokenTests[];
16extern const char kTestLauncherFilterFile[];
17extern const char kTestLauncherJobs[];
18extern const char kTestLauncherListTests[];
19extern const char kTestLauncherOutput[];
20extern const char kTestLauncherRetryLimit[];
21extern const char kTestLauncherSummaryOutput[];
22extern const char kTestLauncherPrintTestStdio[];
23extern const char kTestLauncherPrintWritablePath[];
24extern const char kTestLauncherShardIndex[];
25extern const char kTestLauncherTotalShards[];
26extern const char kTestLauncherTimeout[];
27extern const char kTestLauncherTrace[];
28extern const char kTestTinyTimeout[];
29extern const char kUiTestActionTimeout[];
30extern const char kUiTestActionMaxTimeout[];
31
32}  // namespace switches
33
34#endif  // BASE_TEST_TEST_SWITCHES_H_
35