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#include "base/test/test_switches.h"
6
7// Maximum number of tests to run in a single batch.
8const char switches::kTestLauncherBatchLimit[] = "test-launcher-batch-limit";
9
10// Sets defaults desirable for the continuous integration bots, e.g. parallel
11// test execution and test retries.
12const char switches::kTestLauncherBotMode[] =
13    "test-launcher-bot-mode";
14
15// Makes it possible to debug the launcher itself. By default the launcher
16// automatically switches to single process mode when it detects presence
17// of debugger.
18const char switches::kTestLauncherDebugLauncher[] =
19    "test-launcher-debug-launcher";
20
21// Path to file containing test filter (one pattern per line).
22const char switches::kTestLauncherFilterFile[] = "test-launcher-filter-file";
23
24// Number of parallel test launcher jobs.
25const char switches::kTestLauncherJobs[] = "test-launcher-jobs";
26
27// Path to test results file in our custom test launcher format.
28const char switches::kTestLauncherOutput[] = "test-launcher-output";
29
30// Maximum number of times to retry a test after failure.
31const char switches::kTestLauncherRetryLimit[] = "test-launcher-retry-limit";
32
33// Path to test results file with all the info from the test launcher.
34const char switches::kTestLauncherSummaryOutput[] =
35    "test-launcher-summary-output";
36
37// Flag controlling when test stdio is displayed as part of the launcher's
38// standard output.
39const char switches::kTestLauncherPrintTestStdio[] =
40    "test-launcher-print-test-stdio";
41
42// Index of the test shard to run, starting from 0 (first shard) to total shards
43// minus one (last shard).
44const char switches::kTestLauncherShardIndex[] =
45    "test-launcher-shard-index";
46
47// Total number of shards. Must be the same for all shards.
48const char switches::kTestLauncherTotalShards[] =
49    "test-launcher-total-shards";
50
51// Time (in milliseconds) that the tests should wait before timing out.
52const char switches::kTestLauncherTimeout[] = "test-launcher-timeout";
53// TODO(phajdan.jr): Clean up the switch names.
54const char switches::kTestTinyTimeout[] = "test-tiny-timeout";
55const char switches::kUiTestActionTimeout[] = "ui-test-action-timeout";
56const char switches::kUiTestActionMaxTimeout[] = "ui-test-action-max-timeout";
57