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

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

Issue 476543004: Implement unit test specific test launcher timeout (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: after disabling Created 6 years, 4 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/test_timeouts.h » ('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 // Maximum number of tests to run in a single batch. 7 // Maximum number of tests to run in a single batch.
8 const char switches::kTestLauncherBatchLimit[] = "test-launcher-batch-limit"; 8 const char switches::kTestLauncherBatchLimit[] = "test-launcher-batch-limit";
9 9
10 // Sets defaults desirable for the continuous integration bots, e.g. parallel 10 // Sets defaults desirable for the continuous integration bots, e.g. parallel
(...skipping 32 matching lines...) Expand 10 before | Expand all | Expand 10 after
43 // minus one (last shard). 43 // minus one (last shard).
44 const char switches::kTestLauncherShardIndex[] = 44 const char switches::kTestLauncherShardIndex[] =
45 "test-launcher-shard-index"; 45 "test-launcher-shard-index";
46 46
47 // Total number of shards. Must be the same for all shards. 47 // Total number of shards. Must be the same for all shards.
48 const char switches::kTestLauncherTotalShards[] = 48 const char switches::kTestLauncherTotalShards[] =
49 "test-launcher-total-shards"; 49 "test-launcher-total-shards";
50 50
51 // Time (in milliseconds) that the tests should wait before timing out. 51 // Time (in milliseconds) that the tests should wait before timing out.
52 const char switches::kTestLauncherTimeout[] = "test-launcher-timeout"; 52 const char switches::kTestLauncherTimeout[] = "test-launcher-timeout";
53 const char switches::kTestLauncherUnitTimeout[] = "test-launcher-unit-timeout";
53 // TODO(phajdan.jr): Clean up the switch names. 54 // TODO(phajdan.jr): Clean up the switch names.
54 const char switches::kTestTinyTimeout[] = "test-tiny-timeout"; 55 const char switches::kTestTinyTimeout[] = "test-tiny-timeout";
55 const char switches::kUiTestActionTimeout[] = "ui-test-action-timeout"; 56 const char switches::kUiTestActionTimeout[] = "ui-test-action-timeout";
56 const char switches::kUiTestActionMaxTimeout[] = "ui-test-action-max-timeout"; 57 const char switches::kUiTestActionMaxTimeout[] = "ui-test-action-max-timeout";
OLDNEW
« no previous file with comments | « base/test/test_switches.h ('k') | base/test/test_timeouts.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698