Home | History | Annotate | Download | only in ABITest
      1 #!/bin/sh
      2 
      3 set -eu
      4 
      5 if [ $# != 1 ]; then
      6     echo "usage: $0 <num-tests>"
      7     exit 1
      8 fi
      9 
     10 for i in $(seq 0 $1); do 
     11     if (! make test.$i.report &> /dev/null); then 
     12         echo "FAIL: $i";
     13     fi; 
     14 done
     15 
     16