about summary refs log tree commit diff stats
path: root/cpp
diff options
context:
space:
mode:
authorKartik K. Agaram <vc@akkartik.com>2015-04-06 12:22:06 -0700
committerKartik K. Agaram <vc@akkartik.com>2015-04-06 12:22:06 -0700
commitb3707a6f5002c9a82cfc5164aa86b8c4f7fe69f9 (patch)
tree4f194f9efb006a243c79ed901fd391d29ba5d66c /cpp
parentf278a15d218852980691f4b77fb8ac6a5fe52e4d (diff)
downloadmu-b3707a6f5002c9a82cfc5164aa86b8c4f7fe69f9.tar.gz
1028 - now actually test every single layer
In the process, test_all actually got *simpler*.
Diffstat (limited to 'cpp')
-rwxr-xr-xcpp/test_all8
1 files changed, 3 insertions, 5 deletions
diff --git a/cpp/test_all b/cpp/test_all
index a171031e..c30d8926 100755
--- a/cpp/test_all
+++ b/cpp/test_all
@@ -1,9 +1,7 @@
 #!/bin/bash
 
-for l in `seq 10 99`
+for f in [0-9]*
 do
-  echo "=== $l"
-  ./build_and_test_until 0$l
-  # stop after the first index without a file
-  if [ ! -f 0$l* ]; then break; fi
+  echo "=== $f"
+  ./build_and_test_until $f
 done