From 2f8f017c377f71553730e8a17fb486cdae836175 Mon Sep 17 00:00:00 2001 From: Simon Ruderich Date: Sat, 17 Sep 2011 22:07:20 +0200 Subject: [PATCH] tests/tests.sh: If the first test fails abort. A failure in the first test was ignored until now! --- tests/tests.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/tests.sh b/tests/tests.sh index a7b940a..6848f34 100755 --- a/tests/tests.sh +++ b/tests/tests.sh @@ -22,9 +22,9 @@ [ "x$srcdir" = x ] && srcdir=. echo "RUNNING NORMAL TESTS" -$srcdir/tests-normal.sh +$srcdir/tests-normal.sh || exit 1 echo echo "RUNNING PASSTHROUGH (-u) TESTS" -$srcdir/tests-passthrough.sh +$srcdir/tests-passthrough.sh || exit 1 -- 2.43.2