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

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

Issue 10582012: For unit tests, track additions to AtExitManager and warn. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Fix compile Created 8 years, 6 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
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 namespace switches {
8
9 // Run the tests and the launcher in the same process. Useful for debugging a
10 // specific test in a debugger.
11 const char kSingleProcessTestsFlag[] = "single_process";
12
13 // Run the tests and the launcher in the same process, and Chromium in single
Paweł Hajdan Jr. 2012/06/22 07:52:42 This is not true. It runs Chrome in single-process
Scott Byer 2012/06/22 22:02:55 Done.
14 // process mode.
15 const char kSingleProcessTestsAndChromeFlag[] = "single-process";
16
7 // Time (in milliseconds) that the tests should wait before timing out. 17 // Time (in milliseconds) that the tests should wait before timing out.
8 // TODO(phajdan.jr): Clean up the switch names. 18 // TODO(phajdan.jr): Clean up the switch names.
9 const char switches::kTestLargeTimeout[] = "test-large-timeout"; 19 const char kTestLargeTimeout[] = "test-large-timeout";
10 const char switches::kTestTinyTimeout[] = "test-tiny-timeout"; 20 const char kTestTinyTimeout[] = "test-tiny-timeout";
11 const char switches::kUiTestActionTimeout[] = "ui-test-action-timeout"; 21 const char kUiTestActionTimeout[] = "ui-test-action-timeout";
12 const char switches::kUiTestActionMaxTimeout[] = "ui-test-action-max-timeout"; 22 const char kUiTestActionMaxTimeout[] = "ui-test-action-max-timeout";
23
24 } // namespace switches
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698