Skip to content

Commit 1fd1333

Browse files
committed
disabled debug
1 parent e336473 commit 1fd1333

2 files changed

Lines changed: 7 additions & 2 deletions

File tree

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ env:
4242
build-jdk: 17
4343
# latest-jdk: 21
4444
retention-days: 5
45-
debug: true # put to true if need to debug a specific test
45+
debug: false # put to true if need to debug a specific test
4646
debugTestName: "com.foo.base.BaseIT" # replace with test to debug
4747

4848
# This build is quite expensive (some hours), so we run it whole only on some JVM versions and OSs.

client-java/controller/src/main/java/org/evomaster/client/java/controller/ExternalSutController.java

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -93,7 +93,12 @@ public final void setupForGeneratedTest(){
9393
//In the past, we configured P6Spy here
9494
}
9595

96-
public void setNeedsJdk17Options(boolean needsJdk17Options) {
96+
/**
97+
* Unfortunately, the use of --add-opens in JDK 17+ has broken many things... :(
98+
* If you are using JDK 17 or above, you must set this to true
99+
* @param needsJdk17Options
100+
*/
101+
public final void setNeedsJdk17Options(boolean needsJdk17Options) {
97102
this.needsJdk17Options = needsJdk17Options;
98103
}
99104

0 commit comments

Comments
 (0)