xref: /netbsd-src/external/apache2/llvm/dist/clang/utils/ABITest/build-and-summarize-all.sh (revision 53b02e147d4ed531c0d2a5ca9b3e8026ba3e99b5)
1#!/bin/sh
2
3set -eu
4
5if [ $# != 1 ]; then
6    echo "usage: $0 <num-tests>"
7    exit 1
8fi
9
10for bits in 32 64; do
11    for kind in return-types single-args; do
12        echo "-- $kind-$bits --"
13        (cd $kind-$bits && ../build-and-summarize.sh $1)
14    done
15done
16