diff options
author | phajdan.jr@chromium.org <phajdan.jr@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-11-23 02:01:04 +0000 |
---|---|---|
committer | phajdan.jr@chromium.org <phajdan.jr@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-11-23 02:01:04 +0000 |
commit | b7be8b271a007d884f79a8f176747227087e6447 (patch) | |
tree | 937630bdeef3f967ecdc5e489e4662f3ba14bb53 /base | |
parent | 62830984da1fe2910cf84cd3c1cfc5403816666e (diff) | |
download | chromium_src-b7be8b271a007d884f79a8f176747227087e6447.zip chromium_src-b7be8b271a007d884f79a8f176747227087e6447.tar.gz chromium_src-b7be8b271a007d884f79a8f176747227087e6447.tar.bz2 |
GTTF: Lower test launcher timeout back to 45s.
It was increased in https://codereview.chromium.org/46043006
but 70s is too long and only few tests are affected.
BUG=236893
R=jam@chromium.org
Review URL: https://codereview.chromium.org/83443003
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@236922 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'base')
-rw-r--r-- | base/test/test_timeouts.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/base/test/test_timeouts.cc b/base/test/test_timeouts.cc index 70bed30..467c0fe 100644 --- a/base/test/test_timeouts.cc +++ b/base/test/test_timeouts.cc @@ -68,7 +68,7 @@ int TestTimeouts::action_max_timeout_ms_ = 30000; #endif // NDEBUG int TestTimeouts::large_test_timeout_ms_ = 10 * 60 * 1000; -int TestTimeouts::test_launcher_timeout_ms_ = 70000; +int TestTimeouts::test_launcher_timeout_ms_ = 45000; // static void TestTimeouts::Initialize() { |