diff options
author | Kartik K. Agaram <vc@akkartik.com> | 2015-04-06 12:22:06 -0700 |
---|---|---|
committer | Kartik K. Agaram <vc@akkartik.com> | 2015-04-06 12:22:06 -0700 |
commit | b3707a6f5002c9a82cfc5164aa86b8c4f7fe69f9 (patch) | |
tree | 4f194f9efb006a243c79ed901fd391d29ba5d66c /cpp/test_all | |
parent | f278a15d218852980691f4b77fb8ac6a5fe52e4d (diff) | |
download | mu-b3707a6f5002c9a82cfc5164aa86b8c4f7fe69f9.tar.gz |
1028 - now actually test every single layer
In the process, test_all actually got *simpler*.
Diffstat (limited to 'cpp/test_all')
-rwxr-xr-x | cpp/test_all | 8 |
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 |