Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions make/build-support/version-numbers
Original file line number Diff line number Diff line change
Expand Up @@ -48,6 +48,6 @@ DEFAULT_JAVADIFFUTILS_LICENSE_CHECKSUM=7df059597099bb7dcf25d2a9aedfaf4465f72d8d

# for testing
# JUnit 5 = JUnit Platform 1.y.z + JUnit Jupiter 5.y.z + JUnit Vintage 5.y.z
DEFAULT_JUNIT_VERSION=1.9.2
DEFAULT_JUNIT_JAR_CHECKSUM=bb856bc86a6e6cd48080546afcaf7a210713ea21
DEFAULT_JUNIT_VERSION=1.13.4
DEFAULT_JUNIT_JAR_CHECKSUM=62734191af1bfc78ee17181ca38b94dbb5eb7737
DEFAULT_JUNIT_LICENSE_FILE=LICENSE-junit.txt
6 changes: 4 additions & 2 deletions test/junit/JUnitTests.gmk
Original file line number Diff line number Diff line change
Expand Up @@ -44,10 +44,12 @@ $(BUILDTESTDIR)/JUnitTests.ok: \
$(JAVA) \
$(JUnitTest.add-exports) \
-jar $(JUNIT_JAR) \
-classpath $(JUnitTest.classpath) \
execute \
--class-path $(JUnitTest.classpath) \
--reports-dir=$(@:%.ok=%/report) \
--select-package=apitest \
2>&1 | tee $(@:%.ok=%/log)
--fail-if-no-tests \
2>&1 | tee $(@:%.ok=%/log)
echo $@ passed at `date` > $@

$(BUILDTESTDIR)/JUnitTests.classes.ok: \
Expand Down