]> ruderich.org/simon Gitweb - tlsproxy/tlsproxy.git/commitdiff
tests/common.sh: Abort on errors.
authorSimon Ruderich <simon@ruderich.org>
Fri, 12 Jul 2013 14:06:48 +0000 (16:06 +0200)
committerSimon Ruderich <simon@ruderich.org>
Fri, 12 Jul 2013 14:06:48 +0000 (16:06 +0200)
tests/common.sh

index 87781f2d0e165512a42537987dea03243eb1cdd3..52b0f74bfa740318646e5fda571ab2994fb37b0c 100644 (file)
@@ -16,6 +16,9 @@
 # along with this program.  If not, see <http://www.gnu.org/licenses/>.
 
 
+set -e
+
+
 cleanup() {
     rm -f \
         certificate-localhost-proxy.pem certificate-localhost-server.pem \
@@ -47,5 +50,5 @@ test_invalid_certificate() {
     grep 'certificate invalid' tmp >/dev/null || abort
 }
 test_no_invalid_certificate() {
-    grep 'certificate invalid' tmp >/dev/null && abort
+    grep 'certificate invalid' tmp >/dev/null && abort || true
 }