test_switches.cc revision 58537e28ecd584eab876aee8be7156509866d23a
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// Time (in milliseconds) that the tests should wait before timing out.
8// TODO(phajdan.jr): Clean up the switch names.
9const char switches::kTestLargeTimeout[] = "test-large-timeout";
10
11// Maximum number of tests to run in a single batch.
12const char switches::kTestLauncherBatchLimit[] = "test-launcher-batch-limit";
13
14// Number of parallel test launcher jobs.
15const char switches::kTestLauncherJobs[] = "test-launcher-jobs";
16
17// Path to test results file in our custom test launcher format.
18const char switches::kTestLauncherOutput[] = "test-launcher-output";
19
20// Time (in milliseconds) that the tests should wait before timing out.
21// TODO(phajdan.jr): Clean up the switch names.
22const char switches::kTestTinyTimeout[] = "test-tiny-timeout";
23const char switches::kUiTestActionTimeout[] = "ui-test-action-timeout";
24const char switches::kUiTestActionMaxTimeout[] = "ui-test-action-max-timeout";
25