about summary refs log tree commit diff stats
path: root/test_all_layers
diff options
context:
space:
mode:
authorKartik K. Agaram <vc@akkartik.com>2016-05-08 18:16:38 -0700
committerKartik K. Agaram <vc@akkartik.com>2016-05-08 18:16:38 -0700
commit09b30181293658a5b5a97441277e9d12e06111f9 (patch)
treee7710025d165c3fc92a23f5e35a5b81e9e78e25f /test_all_layers
parenta088d5c3cf74673352c32b384a432892ee1263c3 (diff)
downloadmu-09b30181293658a5b5a97441277e9d12e06111f9.tar.gz
2939
Diffstat (limited to 'test_all_layers')
-rwxr-xr-xtest_all_layers8
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