X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;ds=inline;f=tests%2Fbugs%2Fsignals.sh;h=a2787f29c82b1bfa296bc4b77c6a84c5627645bf;hb=89a1e7f479414c1a2345e33210d69e91e61b33ac;hp=3c2cf941e8ae8b3c3c89c752175fb3a71cc012d1;hpb=65f688e8b8528c5e60b0f6d5fe1654abf6fa5c35;p=pspp-builds.git diff --git a/tests/bugs/signals.sh b/tests/bugs/signals.sh index 3c2cf941..a2787f29 100755 --- a/tests/bugs/signals.sh +++ b/tests/bugs/signals.sh @@ -58,7 +58,7 @@ mkdir -p $TEMPDIR cd $TEMPDIR activity="sending SIGINT to pspp" -echo 'host kill -INT $PPID' | $PSPP --testing-mode -o raw-ascii > /dev/null 2> $TEMPDIR/stderr1 +echo 'host kill -INT $PPID' | $PSPP --testing-mode > /dev/null 2> $TEMPDIR/stderr1 if [ $? -ne 0 ] ; then no_result ; fi # SIGINT should have caused a clean shutdown @@ -67,7 +67,7 @@ activity="checking for absence of error messages 1" if [ $? -ne 0 ] ; then fail ; fi activity="sending SIGSEGV to pspp" -echo 'host kill -SEGV $PPID' | $PSPP --testing-mode -o raw-ascii > /dev/null 2> $TEMPDIR/stderr2 +echo 'host kill -SEGV $PPID' | $PSPP --testing-mode > /dev/null 2> $TEMPDIR/stderr2 if [ $? -eq 0 ] ; then no_result ; fi # SIGSEGV should have caused an error message