brintos

brintos / llvm-project-archived public Read only

0
0
Text · 171 B · a50d14a Raw
13 lines · bash
1#!/bin/sh2 3set -eu4 5if [ $# != 1 ]; then6    echo "usage: $0 <num-tests>"7    exit 18fi9 10CPUS=211make -j $CPUS \12  $(for i in $(seq 0 $1); do echo test.$i.report; done) -k13