summaryrefslogtreecommitdiffstats
path: root/chrome/test
diff options
context:
space:
mode:
Diffstat (limited to 'chrome/test')
-rw-r--r--chrome/test/test_launcher/out_of_proc_test_runner.cc4
1 files changed, 3 insertions, 1 deletions
diff --git a/chrome/test/test_launcher/out_of_proc_test_runner.cc b/chrome/test/test_launcher/out_of_proc_test_runner.cc
index 766314c..2e318b6 100644
--- a/chrome/test/test_launcher/out_of_proc_test_runner.cc
+++ b/chrome/test/test_launcher/out_of_proc_test_runner.cc
@@ -38,7 +38,9 @@ const char kTestTerminateTimeoutFlag[] = "test-terminate-timeout";
const char kChildProcessFlag[] = "child";
const char kHelpFlag[] = "help";
-const int64 kDefaultTestTimeoutMs = 30000;
+// This value was changed from 30000 (30sec) to 45000 due to
+// http://crbug.com/43862.
+const int64 kDefaultTestTimeoutMs = 45000;
class OutOfProcTestRunner : public tests::TestRunner {
public: