parallelize most system tests

This commit is contained in:
Evan Hunt
2018-02-20 15:43:27 -08:00
parent 0217cc8bb2
commit c032c54dda
621 changed files with 7697 additions and 7749 deletions

View File

@@ -12,7 +12,7 @@ SYSTEMTESTTOP=..
status=0
n=0
fail() {
echo "I:failed"
echo_i "failed"
status=`expr $status + 1`
}
@@ -23,7 +23,7 @@ runcmd() {
testcase() {
n=`expr $n + 1`
echo "I:$name ($n)"
echo_i "$name ($n)"
expect=$1
shift
result=`runcmd "$@"`
@@ -234,5 +234,5 @@ name='prefer CDNSKEY'
out=DS.2-2
testcase 0 $CDS -D -s -7200 -f sig.cds.cdnskey.2 -d DS.1 $Z
echo "I:exit status: $status"
echo_i "exit status: $status"
[ $status -eq 0 ] || exit 1