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_all9
1 files changed, 9 insertions, 0 deletions
diff --git a/cpp/test_all b/cpp/test_all
new file mode 100755
index 00000000..a171031e
--- /dev/null
+++ b/cpp/test_all
@@ -0,0 +1,9 @@
+#!/bin/bash
+
+for l in `seq 10 99`
+do
+  echo "=== $l"
+  ./build_and_test_until 0$l
+  # stop after the first index without a file
+  if [ ! -f 0$l* ]; then break; fi
+done