diff options
author | Kartik K. Agaram <vc@akkartik.com> | 2016-05-08 18:16:38 -0700 |
---|---|---|
committer | Kartik K. Agaram <vc@akkartik.com> | 2016-05-08 18:16:38 -0700 |
commit | 09b30181293658a5b5a97441277e9d12e06111f9 (patch) | |
tree | e7710025d165c3fc92a23f5e35a5b81e9e78e25f /test_all_layers | |
parent | a088d5c3cf74673352c32b384a432892ee1263c3 (diff) | |
download | mu-09b30181293658a5b5a97441277e9d12e06111f9.tar.gz |
2939
Diffstat (limited to 'test_all_layers')
-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 |