commit | d676227d8fcef3c3d34f1a7a44141b4f5f2e8519 | [log] [tgz] |
---|---|---|
author | Vladimir Marko <vmarko@google.com> | Tue Apr 19 16:10:21 2016 +0100 |
committer | Vladimir Marko <vmarko@google.com> | Tue Apr 19 16:12:44 2016 +0100 |
tree | 010188cbb68a08cc394f383b77db0f2e592e2ee5 | |
parent | c5c508d149a7eeae1121ca4b932e8c6ab024813f [diff] |
Increase timeout for the 570-checker-osr test from 20s to 60s. We have added new tests to the 570-checker-osr test in https://android-review.googlesource.com/215877 without increasing the timeout and we're seeing a timeout on the build bot but not locally. Bug: 28210356 Change-Id: I52160e617772857c62c7cbb7de6cbb5c23c02a66
diff --git a/test/570-checker-osr/src/Main.java b/test/570-checker-osr/src/Main.java index f22a0c1..ba839bf 100644 --- a/test/570-checker-osr/src/Main.java +++ b/test/570-checker-osr/src/Main.java
@@ -24,7 +24,7 @@ }; testThread.start(); try { - testThread.join(20 * 1000); // 20s timeout. + testThread.join(60 * 1000); // 60s timeout. } catch (InterruptedException ie) { System.out.println("Interrupted."); System.exit(1);