OLD | NEW |
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 Chromium in single process mode. |
| 10 const char kSingleProcessChromeFlag[] = "single-process"; |
| 11 |
| 12 // Run the tests and the launcher in the same process. Useful for debugging a |
| 13 // specific test in a debugger. |
| 14 const char kSingleProcessTestsFlag[] = "single_process"; |
| 15 |
7 // Time (in milliseconds) that the tests should wait before timing out. | 16 // Time (in milliseconds) that the tests should wait before timing out. |
8 // TODO(phajdan.jr): Clean up the switch names. | 17 // TODO(phajdan.jr): Clean up the switch names. |
9 const char switches::kTestLargeTimeout[] = "test-large-timeout"; | 18 const char kTestLargeTimeout[] = "test-large-timeout"; |
10 const char switches::kTestTinyTimeout[] = "test-tiny-timeout"; | 19 const char kTestTinyTimeout[] = "test-tiny-timeout"; |
11 const char switches::kUiTestActionTimeout[] = "ui-test-action-timeout"; | 20 const char kUiTestActionTimeout[] = "ui-test-action-timeout"; |
12 const char switches::kUiTestActionMaxTimeout[] = "ui-test-action-max-timeout"; | 21 const char kUiTestActionMaxTimeout[] = "ui-test-action-max-timeout"; |
| 22 |
| 23 } // namespace switches |
OLD | NEW |