We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9eb5a38 commit d922b3eCopy full SHA for d922b3e
1 file changed
prism/Makefile
@@ -512,9 +512,10 @@ count_loc:
512
###########
513
514
# Run all unit tests
515
+JUNIT_JAR = $(wildcard $(PRISM_LIB_DIR)/junit-platform-console-standalone-*.jar)
516
unittests: make_tests
517
# Provide Regex to match our test classes. If none is given, only certain test classes are excluded by default.
- $(JAVA) -jar lib/junit-platform-console-standalone.jar -cp classes --include-classname '^(Test.*|.+[.$$]Test.*|.+Tests?[.$$].+|.*Tests?)$$' -scan-classpath --details=summary
518
+ $(JAVA) -jar $(JUNIT_JAR) -cp classes --include-classname '^(Test.*|.+[.$$]Test.*|.+Tests?[.$$].+|.*Tests?)$$' -scan-classpath --details=summary
519
520
# Run a single test case from the test suite (useful quick check that the build was ok)
521
test:
0 commit comments