about summary refs log blame commit diff stats
path: root/cpp/test_all
blob: a171031e952b56866b4a01802f9ccf2e08d02ef2 (plain) (tree)
1
2
3
4
5
6
7
8
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