| 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 // 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 48 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 59 // Total number of shards. Must be the same for all shards. | 59 // Total number of shards. Must be the same for all shards. |
| 60 const char switches::kTestLauncherTotalShards[] = | 60 const char switches::kTestLauncherTotalShards[] = |
| 61 "test-launcher-total-shards"; | 61 "test-launcher-total-shards"; |
| 62 | 62 |
| 63 // Time (in milliseconds) that the tests should wait before timing out. | 63 // Time (in milliseconds) that the tests should wait before timing out. |
| 64 const char switches::kTestLauncherTimeout[] = "test-launcher-timeout"; | 64 const char switches::kTestLauncherTimeout[] = "test-launcher-timeout"; |
| 65 // TODO(phajdan.jr): Clean up the switch names. | 65 // TODO(phajdan.jr): Clean up the switch names. |
| 66 const char switches::kTestTinyTimeout[] = "test-tiny-timeout"; | 66 const char switches::kTestTinyTimeout[] = "test-tiny-timeout"; |
| 67 const char switches::kUiTestActionTimeout[] = "ui-test-action-timeout"; | 67 const char switches::kUiTestActionTimeout[] = "ui-test-action-timeout"; |
| 68 const char switches::kUiTestActionMaxTimeout[] = "ui-test-action-max-timeout"; | 68 const char switches::kUiTestActionMaxTimeout[] = "ui-test-action-max-timeout"; |
| 69 |
| 70 #if defined(ENABLE_PLUGINS) |
| 71 // Makes browser pixel tests overwrite the reference if it does not match. |
| 72 const char switches::kRebaselinePixelTests[] = "rebaseline-pixel-tests"; |
| 73 #endif |
| OLD | NEW |