Handle tests properly (pipeline should stop if there are any errors)
This commit is contained in:
parent
774d0096d8
commit
e535c2f9bf
1 changed files with 2 additions and 2 deletions
4
makefile
4
makefile
|
|
@ -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)
|
||||
|
|
|
|||
Loading…
Reference in a new issue