brintos

brintos / llvm-project-archived public Read only

0
0
Text · 260 B · 23e34a4 Raw
16 lines · bash
1#!/bin/sh2 3set -eu4 5if [ $# != 1 ]; then6    echo "usage: $0 <num-tests>"7    exit 18fi9 10for bits in 32 64; do11    for kind in return-types single-args; do12        echo "-- $kind-$bits --"13        (cd $kind-$bits && ../build-and-summarize.sh $1)14    done15done16