Sped up the Signal tests.
diff --git a/testdata/traptest.sh b/testdata/traptest.sh index 8e56ebf..63f788c 100755 --- a/testdata/traptest.sh +++ b/testdata/traptest.sh
@@ -1,9 +1,9 @@ #!/bin/bash FIFOFILE=$(mktemp -u) -trap 'rm -f $FIFOFILE; echo "Got the INTR Signal"' INT -trap 'rm -f $FIFOFILE; echo "Got the QUIT Signal"' QUIT -trap 'rm -f $FIFOFILE; echo "Got the USR1 Signal"' USR1 -trap 'rm -f $FIFOFILE; echo "Got the HUP Signal"' HUP +trap 'rm -f $FIFOFILE; echo "Got the INTR Signal"; exit' INT +trap 'rm -f $FIFOFILE; echo "Got the QUIT Signal"; exit' QUIT +trap 'rm -f $FIFOFILE; echo "Got the USR1 Signal"; exit' USR1 +trap 'rm -f $FIFOFILE; echo "Got the HUP Signal"; exit' HUP if [[ -p $FIFOFILE ]] then