From 09b30181293658a5b5a97441277e9d12e06111f9 Mon Sep 17 00:00:00 2001 From: "Kartik K. Agaram" <vc@akkartik.com> Date: Sun, 8 May 2016 18:16:38 -0700 Subject: 2939 --- test_all_layers | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/test_all_layers b/test_all_layers index 02d9750c..f7551aea 100755 --- a/test_all_layers +++ b/test_all_layers @@ -1,17 +1,17 @@ -#!/bin/bash +#!/bin/sh for f in [0-9]* do if [ "$f" \< "$1" ]; then continue; fi echo "=== $f" - ./build_and_test_until $f || exit 0 + ./build_and_test_until $f || exit 1 done echo "=== chessboard" -./mu test chessboard.mu +./mu test chessboard.mu || exit 1 for f in edit/[0-9]* do echo "=== edit: until $f" - ./mu test `echo edit/[0-9]* |perl -pwe "s,$f.*,$f,"` + ./mu test `echo edit/[0-9]* |perl -pwe "s,$f.*,$f,"` || exit 1 done -- cgit 1.4.1-2-gfad0