summaryrefslogtreecommitdiffstats
path: root/clang/utils/ABITest/summarize.sh
blob: 6dba41564bb8f0aa49d45edac3470487ba4bd63b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#!/bin/sh

set -eu

if [ $# != 1 ]; then
    echo "usage: $0 <num-tests>"
    exit 1
fi

for i in $(zseq 0 $1); do 
    if (! make test.$i.report &> /dev/null); then 
        echo "FAIL: $i";
    fi; 
done

OpenPOWER on IntegriCloud