Skip to content

Commit 1342af5

Browse files
author
jantje
committed
updated comments
1 parent 06ae601 commit 1342af5

File tree

1 file changed

+8
-5
lines changed

1 file changed

+8
-5
lines changed

io.sloeber.tests/src/io/sloeber/core/CreateAndCompileArduinoIDEExamplesOnTeensyTest.java

Lines changed: 8 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,12 @@
11
package io.sloeber.core;
2+
/*
3+
* This test compiles all examples on all Teensy hardware
4+
* For this test to be able to run you need to specify the
5+
* teensy install folder of your system in MySystem.java
6+
*
7+
* At the time of writing no examples are excluded
8+
* only the private static method skipExample allows to skip examples
9+
*/
210

311
import static org.junit.Assert.fail;
412

@@ -95,11 +103,6 @@ public static void installAdditionalBoards() {
95103
}
96104

97105
public void testExample() {
98-
// Stop after X fails because
99-
// the fails stays open in eclipse and it becomes really slow
100-
// There are only a number of issues you can handle
101-
// best is to focus on the first ones and then rerun starting with the
102-
// failures
103106
Assume.assumeTrue("Skipping first " + mySkipAtStart + " tests", myBuildCounter++ >= mySkipAtStart);
104107
Assume.assumeTrue("To many fails. Stopping test", myTotalFails < maxFails);
105108
if (!Shared.BuildAndVerify(myTestName, myBoardDescriptor, myCodeDescriptor, new CompileOptions(null))) {

0 commit comments

Comments
 (0)