Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(342)

Side by Side Diff: base/test/test_switches.cc

Issue 23760003: GTTF: Add command-line switches for number of jobs and batch limit. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: re-upload Created 7 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « base/test/test_switches.h ('k') | base/test/unit_test_launcher.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. 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 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #include "base/test/test_switches.h" 5 #include "base/test/test_switches.h"
6 6
7 // Time (in milliseconds) that the tests should wait before timing out. 7 // Time (in milliseconds) that the tests should wait before timing out.
8 // TODO(phajdan.jr): Clean up the switch names. 8 // TODO(phajdan.jr): Clean up the switch names.
9 const char switches::kTestLargeTimeout[] = "test-large-timeout"; 9 const char switches::kTestLargeTimeout[] = "test-large-timeout";
10 10
11 // Maximum number of tests to run in a single batch.
12 const char switches::kTestLauncherBatchLimit[] = "test-launcher-batch-limit";
13
14 // Number of parallel test launcher jobs.
15 const char switches::kTestLauncherJobs[] = "test-launcher-jobs";
16
11 // Path to test results file in our custom test launcher format. 17 // Path to test results file in our custom test launcher format.
12 const char switches::kTestLauncherOutput[] = "test-launcher-output"; 18 const char switches::kTestLauncherOutput[] = "test-launcher-output";
13 19
14 // Time (in milliseconds) that the tests should wait before timing out. 20 // Time (in milliseconds) that the tests should wait before timing out.
15 // TODO(phajdan.jr): Clean up the switch names. 21 // TODO(phajdan.jr): Clean up the switch names.
16 const char switches::kTestTinyTimeout[] = "test-tiny-timeout"; 22 const char switches::kTestTinyTimeout[] = "test-tiny-timeout";
17 const char switches::kUiTestActionTimeout[] = "ui-test-action-timeout"; 23 const char switches::kUiTestActionTimeout[] = "ui-test-action-timeout";
18 const char switches::kUiTestActionMaxTimeout[] = "ui-test-action-max-timeout"; 24 const char switches::kUiTestActionMaxTimeout[] = "ui-test-action-max-timeout";
OLDNEW
« no previous file with comments | « base/test/test_switches.h ('k') | base/test/unit_test_launcher.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698