Skip to content

Commit

Permalink
Merge pull request #603 from linghengqian/fix-junit
Browse files Browse the repository at this point in the history
Fixes the issue that nativeTest cannot be executed using Junit 5.11.0-M2
  • Loading branch information
dnestoro authored Sep 3, 2024
2 parents fae3e47 + a221227 commit 9cea8b8
Showing 1 changed file with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,9 @@ public void onLoad(NativeImageConfiguration config) {
"org.junit.platform.engine.UniqueIdFormat",
"org.junit.platform.commons.util.ReflectionUtils",
// https://github.com/graalvm/native-build-tools/issues/300
"org.junit.platform.reporting.open.xml.OpenTestReportGeneratingListener"
"org.junit.platform.reporting.open.xml.OpenTestReportGeneratingListener",
// https://github.com/graalvm/native-build-tools/issues/602
"org.junit.platform.commons.util.LruCache"
);

if (getMajorJDKVersion() >= 21) {
Expand Down

0 comments on commit 9cea8b8

Please sign in to comment.