fix test running by adding semicolon in foreach

This commit is contained in:
jacekpoz 2024-04-30 12:13:53 +02:00
parent c9c7a4f408
commit 5443eeb7b9
Signed by: poz
SSH key fingerprint: SHA256:JyLeVWE4bF3tDnFeUpUaJsPsNlJyBldDGV/dIKSLyN8

View file

@ -14,7 +14,7 @@ all: dirs_test $(OBJ)
@echo @echo
@echo "---------- STARTING TESTS ----------" @echo "---------- STARTING TESTS ----------"
@echo @echo
$(foreach test,$(OBJ),@./$(test)) @$(foreach test,$(OBJ),./$(test);)
@echo @echo
@echo "---------- FINISHED TESTS ----------" @echo "---------- FINISHED TESTS ----------"
@echo @echo