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 Jun 9, 2020
1 parent e8f65b9 commit 02cca4d
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 4 deletions.
1 change: 1 addition & 0 deletions surefire-its/src/test/resources/fail-fast-testng/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -51,6 +51,7 @@
<configuration>
<runOrder>alphabetical</runOrder>
<forkMode>once</forkMode><!--override to default value in order to enable forkCount-->
<argLine>-Xms64m -Xmx128m</argLine>
</configuration>
</plugin>
</plugins>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ public class ATest
public void someMethod()
throws InterruptedException
{
MILLISECONDS.sleep( 3600L );
MILLISECONDS.sleep( 4_800L );
throw new RuntimeException( "assert \"foo\" == \"bar\"\n"
+ " |\n"
+ " false" );
Expand Down
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 02cca4d

Please sign in to comment.