brintos

brintos / llvm-project-archived public Read only

0
0
Text · 206 B · 3efb52b Raw
16 lines · bash
1#!/bin/sh2 3set -eu4 5if [ $# != 1 ]; then6    echo "usage: $0 <num-tests>"7    exit 18fi9 10for i in $(seq 0 $1); do 11    if (! make test.$i.report &> /dev/null); then 12        echo "FAIL: $i";13    fi; 14done15 16