Skip to content

Commit

Permalink
undo changes that should not have been checked in
Browse files Browse the repository at this point in the history
  • Loading branch information
jantje committed Nov 25, 2021
1 parent 594a3b4 commit 01d8555
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ public class CreateAndCompileDefaultInoOnAllBoardsTest {
private static final boolean closeFailedProjects = false;
private static int myBuildCounter = 0;
private static int myTotalFails = 0;
private static int maxFails = 10;
private static int maxFails = 50;
private static int mySkipTestsAtStart = 0;
private BoardDescription mBoard;
private static final String[] packageUrlsToIgnoreonAllOSes = {
Expand Down Expand Up @@ -346,7 +346,7 @@ public static void installAdditionalBoards() {
public void testBoard() throws Exception {
myBuildCounter++;
Assume.assumeTrue("Skipping first " + mySkipTestsAtStart + " tests", myBuildCounter >= mySkipTestsAtStart);
Assume.assumeTrue("To many fails. Stopping test", myTotalFails < 10);
Assume.assumeTrue("To many fails. Stopping test", myTotalFails < maxFails);

IPath templateFolder = Shared.getTemplateFolder("CreateAndCompileTest");
if (!Shared.BuildAndVerify(this.mBoard, CodeDescription.createCustomTemplate(templateFolder), null,
Expand Down

0 comments on commit 01d8555

Please sign in to comment.