]> granicus.if.org Git - file/commitdiff
exit on error.
authorChristos Zoulas <christos@zoulas.com>
Mon, 18 Apr 2016 18:16:45 +0000 (18:16 +0000)
committerChristos Zoulas <christos@zoulas.com>
Mon, 18 Apr 2016 18:16:45 +0000 (18:16 +0000)
tests/Makefile.am

index c2cb5eee68defc1b50d57f0162f8982eebb67ab0..e55cdf46cc6242a01ed33e044e8efd503f6eafe4 100644 (file)
@@ -13,4 +13,4 @@ issue311docx.testfile
 T = $(top_srcdir)/tests
 check-local:
        MAGIC=$(top_builddir)/magic/magic ./test
-       for i in $T/*.testfile; do echo Running test: $$i; MAGIC=$(top_builddir)/magic/magic ./test $$i $${i%%.testfile}.result; done
+       set -e; for i in $T/*.testfile; do echo Running test: $$i; MAGIC=$(top_builddir)/magic/magic ./test $$i $${i%%.testfile}.result; done