blob: e198a8d0b0ae97ae61f85ae07cb3c165afc84680 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
|
#!/bin/bash
# Repeatedly stop building until successive layers, and run all tests built.
cd `dirname $0`
for f in [0-9]*
do
echo "=== $f"
./build_and_test_until $f || exit 1
done
|