NetBSD/regress/sys/kern/sigtramp/dotest

20 lines
204 B
Bash

#!/bin/sh
# Do a bunch of runs of this program
for i in 0 1 2 3 4 5 6 7 8 9
do
for j in 0 1 2 3 4 5 6 7 8 9
do
for k in 0 1 2 3 4 5 6 7 8 9
do
if ./sigtramp
then
:
else
exit 1
fi
done
done
done