diff options
-rwxr-xr-x | test_all_layers | 8 |
1 files 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 |