Skip to content

Commit

Permalink
[GH] performance problem on Windows nodes
Browse files Browse the repository at this point in the history
  • Loading branch information
Tibor17 committed May 31, 2020
1 parent a3f827f commit c2a3291
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion surefire-its/src/test/resources/fail-fast-junit/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@
<configuration>
<runOrder>alphabetical</runOrder>
<forkMode>once</forkMode><!--override to default value in order to enable forkCount-->
<argLine>-Xms16m -Xmx32m</argLine>
<argLine>-Xms64m -Xmx128m</argLine>
</configuration>
</plugin>
</plugins>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,9 +10,9 @@ public class ATest
public void someMethod()
throws InterruptedException
{
MILLISECONDS.sleep( 3600L );
MILLISECONDS.sleep( 4_800L );
throw new RuntimeException( "assert \"foo\" == \"bar\"\n" +
" |\n"
+ " false" );
}
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ public class BTest
public void test()
throws InterruptedException
{
MILLISECONDS.sleep( 9000L );
MILLISECONDS.sleep( 12_000L );
throw new RuntimeException();
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ public class CTest
public void test()
throws InterruptedException
{
MILLISECONDS.sleep( 9000L );
MILLISECONDS.sleep( 12_000L );
}

}
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ public class DTest
public void test()
throws InterruptedException
{
MILLISECONDS.sleep( 9000L );
MILLISECONDS.sleep( 12_000L );
}

}

0 comments on commit c2a3291

Please sign in to comment.