From 22e2de4864320b92ca802bbdb8dbbfe294710e4e Mon Sep 17 00:00:00 2001 From: Not Zed Date: Mon, 28 Jul 2025 14:44:18 +0930 Subject: [PATCH] minor fixes --- junit.make | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/junit.make b/junit.make index 7273f57..249b14e 100644 --- a/junit.make +++ b/junit.make @@ -49,10 +49,11 @@ endif test: $(1)-test test-it: $(1)-it check: $(1)-test $(1)-it -bin/status/$(1).tests: bin/status/$(1).classes $(notzed.dez_TEST_JAVA) +bin/status/$(1).tests: bin/status/$(1).classes $($1_TEST_JAVA) endef $(foreach module,$(java_MODULES),$(if $(wildcard src/$(module)/tests),$(eval $(call java_tests,$(module))))) +#$(foreach module,$(java_MODULES),$(if $(wildcard src/$(module)/tests),$(info $(call java_tests,$(module))))) # ###################################################################### @@ -70,7 +71,7 @@ bin/status/%.tests: touch $@ %-test: bin/status/%.tests - java \ + $(JAVA) \ --class-path $(subst $(S),:,$(junit4_classpath)) \ --module-path bin/modules \ --patch-module $*=bin/tests/$* \ @@ -80,7 +81,7 @@ bin/status/%.tests: $($*_TEST) %-it: bin/status/%.tests - java \ + $(JAVA) \ --class-path $(subst $(S),:,$(junit4_classpath)) \ --module-path bin/modules \ --patch-module $*=bin/tests/$* \ -- 2.39.5