mirror of
https://github.com/opnsense/src.git
synced 2026-02-28 20:30:57 -05:00
12 lines
171 B
Bash
Executable file
12 lines
171 B
Bash
Executable file
#!/bin/sh
|
|
|
|
set -eu
|
|
|
|
if [ $# != 1 ]; then
|
|
echo "usage: $0 <num-tests>"
|
|
exit 1
|
|
fi
|
|
|
|
CPUS=2
|
|
make -j $CPUS \
|
|
$(for i in $(seq 0 $1); do echo test.$i.report; done) -k
|