fix(xod-tabtest): make makefile exit with error if one of the tests fails

This commit is contained in:
Evgeny Kochetkov
2019-08-27 21:03:09 +03:00
parent c43d1a680a
commit 4637cc8d02

View File

@@ -21,5 +21,5 @@ all: $(RUNNERS)
test: $(RUNNERS)
@for x in $(RUNNERS); do \
echo ./$$x; \
./$$x; \
./$$x || exit 1; \
done