Handle tests properly (pipeline should stop if there are any errors)

This commit is contained in:
NukeBird 2025-12-03 16:56:39 +03:00
parent 774d0096d8
commit e535c2f9bf

View file

@ -15,8 +15,8 @@ all: clean test $(TARGET)
test: $(TEST_EXES)
for %%i in ($(TEST_EXES)) do ( \
echo Running %%i & \
%%i \
echo Running %%i && \
%%i || exit /b 1 \
)
$(TARGET): $(SOURCES)