| 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 // 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 |
| (...skipping 36 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 47 // minus one (last shard). | 47 // minus one (last shard). |
| 48 const char switches::kTestLauncherShardIndex[] = | 48 const char switches::kTestLauncherShardIndex[] = |
| 49 "test-launcher-shard-index"; | 49 "test-launcher-shard-index"; |
| 50 | 50 |
| 51 // Total number of shards. Must be the same for all shards. | 51 // Total number of shards. Must be the same for all shards. |
| 52 const char switches::kTestLauncherTotalShards[] = | 52 const char switches::kTestLauncherTotalShards[] = |
| 53 "test-launcher-total-shards"; | 53 "test-launcher-total-shards"; |
| 54 | 54 |
| 55 // Time (in milliseconds) that the tests should wait before timing out. | 55 // Time (in milliseconds) that the tests should wait before timing out. |
| 56 const char switches::kTestLauncherTimeout[] = "test-launcher-timeout"; | 56 const char switches::kTestLauncherTimeout[] = "test-launcher-timeout"; |
| 57 const char switches::kTestLauncherUnitTimeout[] = "test-launcher-unit-timeout"; |
| 57 // TODO(phajdan.jr): Clean up the switch names. | 58 // TODO(phajdan.jr): Clean up the switch names. |
| 58 const char switches::kTestTinyTimeout[] = "test-tiny-timeout"; | 59 const char switches::kTestTinyTimeout[] = "test-tiny-timeout"; |
| 59 const char switches::kUiTestActionTimeout[] = "ui-test-action-timeout"; | 60 const char switches::kUiTestActionTimeout[] = "ui-test-action-timeout"; |
| 60 const char switches::kUiTestActionMaxTimeout[] = "ui-test-action-max-timeout"; | 61 const char switches::kUiTestActionMaxTimeout[] = "ui-test-action-max-timeout"; |
| OLD | NEW |