2199940a ^
88be3dbc ^
1ead3562 ^
781f2462 ^
192d59d3 ^
57699011 ^
df8bb4c3 ^
f1e953d0 ^
192d59d#!/bin/bash for f in [0-9]* do if [ "$f" \< "$1" ]; then continue; fi echo "=== $f" ./build_and_test_until $f || exit 0 done echo "=== chessboard" rm mu.cc CXX=clang++ ./mu test chessboard.mu for f in edit/[0-9]* do echo "=== edit: until $f" ./mu test `echo edit/[0-9]* |perl -pwe "s,$f.*,$f,"` done
#!/bin/bash for f in [0-9]* do if [ "$f" \< "$1" ]; then continue; fi echo "=== $f" ./build_and_test_until $f || exit 0 done echo "=== chessboard" rm mu.cc CXX=clang++ ./mu test chessboard.mu for f in edit/[0-9]* do echo "=== edit: until $f" ./mu test `echo edit/[0-9]* |perl -pwe "s,$f.*,$f,"` done