[clang] Handle __declspec() attributes in using
[llvm-project.git] / clang / utils / ABITest / summarize.sh
blob3efb52bf72278c59df624176f647c953f44f0415
1 #!/bin/sh
3 set -eu
5 if [ $# != 1 ]; then
6 echo "usage: $0 <num-tests>"
7 exit 1
8 fi
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