test_switches.h 1.1 KB

12345678910111213141516171819202122232425262728293031
  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
  3. // found in the LICENSE file.
  4. #ifndef BUTIL_TEST_TEST_SWITCHES_H_
  5. #define BUTIL_TEST_TEST_SWITCHES_H_
  6. namespace switches {
  7. // All switches in alphabetical order. The switches should be documented
  8. // alongside the definition of their values in the .cc file.
  9. extern const char kTestLargeTimeout[];
  10. extern const char kTestLauncherBatchLimit[];
  11. extern const char kTestLauncherBotMode[];
  12. extern const char kTestLauncherDebugLauncher[];
  13. extern const char kTestLauncherFilterFile[];
  14. extern const char kTestLauncherJobs[];
  15. extern const char kTestLauncherOutput[];
  16. extern const char kTestLauncherRetryLimit[];
  17. extern const char kTestLauncherSummaryOutput[];
  18. extern const char kTestLauncherPrintTestStdio[];
  19. extern const char kTestLauncherShardIndex[];
  20. extern const char kTestLauncherTotalShards[];
  21. extern const char kTestLauncherTimeout[];
  22. extern const char kTestTinyTimeout[];
  23. extern const char kUiTestActionTimeout[];
  24. extern const char kUiTestActionMaxTimeout[];
  25. } // namespace switches
  26. #endif // BUTIL_TEST_TEST_SWITCHES_H_