jehanne/qa/kern/broken.runner

25 lines
352 B
Bash
Executable File

#!/cmd/rc
runner=$0
test = `{echo $runner|sed 's/.runner//'}
test_output = /tmp/output-`{basename $test}
if ( test -e $test_output) rm $test_output
$test > $test_output >[2=1] &
testpid=$APID
wait $testpid
sleep 5
if ( cat $test_output | grep suicide > /dev/null ) {
rm $test_output
echo PASS
exit PASS
}
cat $test_output
echo FAIL
exit FAIL