Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(9)

Side by Side Diff: base/test/test_timeouts.h

Issue 476543004: Implement unit test specific test launcher timeout (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: after disabling Created 6 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « base/test/test_switches.cc ('k') | base/test/test_timeouts.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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 20 matching lines...) Expand all
31 } 31 }
32 32
33 // Timeout longer than the above, but still suitable to use 33 // Timeout longer than the above, but still suitable to use
34 // multiple times in a single test. Use if the timeout above 34 // multiple times in a single test. Use if the timeout above
35 // is not sufficient. 35 // is not sufficient.
36 static base::TimeDelta action_max_timeout() { 36 static base::TimeDelta action_max_timeout() {
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 single test launched used built-in test launcher. 41 // Timeout for a single unit test launched using built-in test launcher.
42 // Do not use outside of the test launcher.
43 static base::TimeDelta test_launcher_unit_timeout() {
44 DCHECK(initialized_);
45 return base::TimeDelta::FromMilliseconds(test_launcher_unit_timeout_ms_);
46 }
47
48 // Timeout for a single test launched using built-in test launcher.
42 // Do not use outside of the test launcher. 49 // Do not use outside of the test launcher.
43 static base::TimeDelta test_launcher_timeout() { 50 static base::TimeDelta test_launcher_timeout() {
44 DCHECK(initialized_); 51 DCHECK(initialized_);
45 return base::TimeDelta::FromMilliseconds(test_launcher_timeout_ms_); 52 return base::TimeDelta::FromMilliseconds(test_launcher_timeout_ms_);
46 } 53 }
47 54
48 private: 55 private:
49 static bool initialized_; 56 static bool initialized_;
50 57
51 static int tiny_timeout_ms_; 58 static int tiny_timeout_ms_;
52 static int action_timeout_ms_; 59 static int action_timeout_ms_;
53 static int action_max_timeout_ms_; 60 static int action_max_timeout_ms_;
61 static int test_launcher_unit_timeout_ms_;
54 static int test_launcher_timeout_ms_; 62 static int test_launcher_timeout_ms_;
55 63
56 DISALLOW_IMPLICIT_CONSTRUCTORS(TestTimeouts); 64 DISALLOW_IMPLICIT_CONSTRUCTORS(TestTimeouts);
57 }; 65 };
58 66
59 #endif // BASE_TEST_TEST_TIMEOUTS_H_ 67 #endif // BASE_TEST_TEST_TIMEOUTS_H_
OLDNEW
« no previous file with comments | « base/test/test_switches.cc ('k') | base/test/test_timeouts.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698