From 5443eeb7b9d8d1c44cef194cc1ed10a99720633f Mon Sep 17 00:00:00 2001 From: jacekpoz Date: Tue, 30 Apr 2024 12:13:53 +0200 Subject: [PATCH] fix test running by adding semicolon in foreach --- test/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/Makefile b/test/Makefile index 50a9d26..341bd08 100644 --- a/test/Makefile +++ b/test/Makefile @@ -14,7 +14,7 @@ all: dirs_test $(OBJ) @echo @echo "---------- STARTING TESTS ----------" @echo - $(foreach test,$(OBJ),@./$(test)) + @$(foreach test,$(OBJ),./$(test);) @echo @echo "---------- FINISHED TESTS ----------" @echo