Skip to content

Commit 9bf98d6

Browse files
committed
Increase timeout for ParallelBuildChainTest #825
The ParallelBuildChainTest.testIndividualProjectBuilds_WithManyProjects_ProjectRelaxedRule randomly fails. This is potentially due to slow infrastructure, thus this change increases the test timeout value. Fixes #825
1 parent 87eb828 commit 9bf98d6

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

resources/tests/org.eclipse.core.tests.resources/src/org/eclipse/core/tests/internal/builders/ParallelBuildChainTest.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@
4747
import org.junit.Test;
4848

4949
public class ParallelBuildChainTest extends AbstractBuilderTest {
50-
private static final int TIMEOUT_IN_MILLIS = 20_000;
50+
private static final int TIMEOUT_IN_MILLIS = 30_000;
5151

5252
private static enum BuildDurationType {
5353
/*
@@ -68,7 +68,7 @@ private static enum BuildDurationType {
6868
public int getDurationInMillis() {
6969
switch (this) {
7070
case LONG_RUNNING:
71-
return 30_000;
71+
return 40_000;
7272
case SHORT_RUNNING:
7373
return 300;
7474
case IMMEDIATE:

0 commit comments

Comments
 (0)