about summary refs log tree commit diff stats
path: root/cpp/test_all
diff options
context:
space:
mode:
Diffstat (limited to 'cpp/test_all')
-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