blob: c970fd22365da1ba1849cd2d8c51753cfa104be1 [file] [log] [blame]
thestig@chromium.orgabe5cd32012-02-08 15:33:56 +09001// Copyright (c) 2012 The Chromium Authors. All rights reserved.
sergeyu@chromium.org0f6abbc2010-10-06 04:03:05 +09002// 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
phajdan.jr@chromium.org7a7e0ee2013-09-05 09:14:36 +09007// Maximum number of tests to run in a single batch.
8const char switches::kTestLauncherBatchLimit[] = "test-launcher-batch-limit";
9
phajdan.jr@chromium.org7e604332013-11-27 09:25:58 +090010// 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";
phajdan.jr@chromium.orgd2e371a2013-11-08 04:53:34 +090014
phajdan.jr@chromium.org950a15f2013-12-12 06:53:34 +090015// 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
phajdan.jr@chromium.org8a5060c2013-12-19 18:59:56 +090021// Path to file containing test filter (one pattern per line).
22const char switches::kTestLauncherFilterFile[] = "test-launcher-filter-file";
23
phajdan.jr@chromium.org7a7e0ee2013-09-05 09:14:36 +090024// Number of parallel test launcher jobs.
25const char switches::kTestLauncherJobs[] = "test-launcher-jobs";
26
phajdan.jr@chromium.org9e2a9f22013-08-24 06:09:08 +090027// Path to test results file in our custom test launcher format.
28const char switches::kTestLauncherOutput[] = "test-launcher-output";
29
phajdan.jr@chromium.orge917c882013-11-14 10:07:29 +090030// Maximum number of times to retry a test after failure.
31const char switches::kTestLauncherRetryLimit[] = "test-launcher-retry-limit";
32
phajdan.jr@chromium.orgfe216b52013-10-15 02:46:21 +090033// Path to test results file with all the info from the test launcher.
34const char switches::kTestLauncherSummaryOutput[] =
35 "test-launcher-summary-output";
36
phajdan.jr@chromium.org8ac222e2013-10-30 08:01:00 +090037// 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
phajdan.jr@chromium.org9b2aa812013-11-05 10:06:08 +090042// 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
phajdan.jr@chromium.org9e2a9f22013-08-24 06:09:08 +090051// Time (in milliseconds) that the tests should wait before timing out.
phajdan.jr@chromium.org9e7b5d32013-09-25 02:00:14 +090052const char switches::kTestLauncherTimeout[] = "test-launcher-timeout";
phajdan.jr@chromium.org9e2a9f22013-08-24 06:09:08 +090053// TODO(phajdan.jr): Clean up the switch names.
scottbyer@chromium.org189aa712012-07-26 05:36:33 +090054const char switches::kTestTinyTimeout[] = "test-tiny-timeout";
55const char switches::kUiTestActionTimeout[] = "ui-test-action-timeout";
56const char switches::kUiTestActionMaxTimeout[] = "ui-test-action-max-timeout";