| 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 #ifndef BASE_TEST_TEST_TIMEOUTS_H_ | 5 #ifndef BASE_TEST_TEST_TIMEOUTS_H_ |
| 6 #define BASE_TEST_TEST_TIMEOUTS_H_ | 6 #define BASE_TEST_TEST_TIMEOUTS_H_ |
| 7 | 7 |
| 8 #include "base/basictypes.h" | 8 #include "base/basictypes.h" |
| 9 #include "base/logging.h" | 9 #include "base/logging.h" |
| 10 #include "base/time/time.h" | 10 #include "base/time/time.h" |
| (...skipping 26 matching lines...) Expand all Loading... |
| 37 DCHECK(initialized_); | 37 DCHECK(initialized_); |
| 38 return base::TimeDelta::FromMilliseconds(action_max_timeout_ms_); | 38 return base::TimeDelta::FromMilliseconds(action_max_timeout_ms_); |
| 39 } | 39 } |
| 40 | 40 |
| 41 // Timeout for a large test that may take a few minutes to run. | 41 // Timeout for a large test that may take a few minutes to run. |
| 42 static base::TimeDelta large_test_timeout() { | 42 static base::TimeDelta large_test_timeout() { |
| 43 DCHECK(initialized_); | 43 DCHECK(initialized_); |
| 44 return base::TimeDelta::FromMilliseconds(large_test_timeout_ms_); | 44 return base::TimeDelta::FromMilliseconds(large_test_timeout_ms_); |
| 45 } | 45 } |
| 46 | 46 |
| 47 // Timeout for a single test launched used built-in test launcher. |
| 48 // Do not use outside of the test launcher. |
| 49 static base::TimeDelta test_launcher_timeout() { |
| 50 DCHECK(initialized_); |
| 51 return base::TimeDelta::FromMilliseconds(test_launcher_timeout_ms_); |
| 52 } |
| 53 |
| 47 private: | 54 private: |
| 48 static bool initialized_; | 55 static bool initialized_; |
| 49 | 56 |
| 50 static int tiny_timeout_ms_; | 57 static int tiny_timeout_ms_; |
| 51 static int action_timeout_ms_; | 58 static int action_timeout_ms_; |
| 52 static int action_max_timeout_ms_; | 59 static int action_max_timeout_ms_; |
| 53 static int large_test_timeout_ms_; | 60 static int large_test_timeout_ms_; |
| 61 static int test_launcher_timeout_ms_; |
| 54 | 62 |
| 55 DISALLOW_IMPLICIT_CONSTRUCTORS(TestTimeouts); | 63 DISALLOW_IMPLICIT_CONSTRUCTORS(TestTimeouts); |
| 56 }; | 64 }; |
| 57 | 65 |
| 58 #endif // BASE_TEST_TEST_TIMEOUTS_H_ | 66 #endif // BASE_TEST_TEST_TIMEOUTS_H_ |
| OLD | NEW |