shorter abstract
[swift-upb.git] / do_tests.sh
1 #!/bin/bash
2
3 for tst in `ls tests/*test | grep -v ledbat`; do
4     if echo $tst; $tst > $tst.log; then
5         echo $tst OK
6     else
7         echo $tst FAIL
8     fi
9 done