From 4637cc8d02fcc0d019a604f80e112fdc0a045e4c Mon Sep 17 00:00:00 2001 From: Evgeny Kochetkov Date: Tue, 27 Aug 2019 21:03:09 +0300 Subject: [PATCH] fix(xod-tabtest): make makefile exit with error if one of the tests fails --- packages/xod-tabtest/cpp/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/xod-tabtest/cpp/Makefile b/packages/xod-tabtest/cpp/Makefile index fafcc971..b9e4dd74 100644 --- a/packages/xod-tabtest/cpp/Makefile +++ b/packages/xod-tabtest/cpp/Makefile @@ -21,5 +21,5 @@ all: $(RUNNERS) test: $(RUNNERS) @for x in $(RUNNERS); do \ echo ./$$x; \ - ./$$x; \ + ./$$x || exit 1; \ done