ctf: Increase time-out of CtfTestSuiteTest
authorMarc-Andre Laperle <marc-andre.laperle@ericsson.com>
Thu, 4 Feb 2016 02:25:07 +0000 (21:25 -0500)
committerMarc-Andre Laperle <marc-andre.laperle@ericsson.com>
Thu, 4 Feb 2016 16:34:45 +0000 (11:34 -0500)
This has been timing out intermittently and I haven't been able to
reproduce it in a way that I can diagnose the problem further. A theory
is that the build machine just gets slow sometimes (it is shared between
many projects). Increasing the time-out shouldn't hurt and if it still
happens, it will be even more suspicious.

Bug: 486209
Change-Id: Ib71f8313b02ce6152bb2eb119bc9ffa11fd44d68
Signed-off-by: Marc-Andre Laperle <marc-andre.laperle@ericsson.com>
Reviewed-on: https://git.eclipse.org/r/65851
Reviewed-by: Hudson CI
Reviewed-by: Matthew Khouzam <matthew.khouzam@ericsson.com>
Tested-by: Matthew Khouzam <matthew.khouzam@ericsson.com>
ctf/org.eclipse.tracecompass.ctf.core.tests/src/org/eclipse/tracecompass/ctf/core/tests/ctftestsuite/CtfTestSuiteTest.java

index 2ecf77ec0344dcaff87cf6967148f36f14d92e57..7a1aa2c3c48066d883937ca55f3935cd6727d121 100644 (file)
@@ -45,9 +45,9 @@ import org.junit.runners.Parameterized.Parameters;
 @RunWith(Parameterized.class)
 public class CtfTestSuiteTest {
 
-    /** Time-out tests after 10 seconds. */
+    /** Time-out tests after 1 minute. */
     @Rule
-    public TestRule globalTimeout = new Timeout(10, TimeUnit.SECONDS);
+    public TestRule globalTimeout = new Timeout(1, TimeUnit.MINUTES);
 
     private static final Path BASE_PATH = Paths.get("traces", "ctf-testsuite", "tests", "1.8");
 
This page took 0.025827 seconds and 5 git commands to generate.