From: Simon Ruderich Date: Sat, 17 Sep 2011 20:07:20 +0000 (+0200) Subject: tests/tests.sh: If the first test fails abort. X-Git-Url: https://ruderich.org/simon/gitweb/?p=tlsproxy%2Ftlsproxy.git;a=commitdiff_plain;h=2f8f017c377f71553730e8a17fb486cdae836175 tests/tests.sh: If the first test fails abort. A failure in the first test was ignored until now! --- 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