* tests/redirect.test: Disable tracing of syscalls, signals,
and exit status instead of redirecting strace output to /dev/null.
else
echo TIMEOUT >> $LOG
fi
-) | $STRACE -o/dev/null sh -c "exec <&- >&-; $SLEEP_A_BIT; $SLEEP_A_BIT"
+) | $STRACE -qq -enone -esignal=none \
+ sh -c "exec <&- >&-; $SLEEP_A_BIT; $SLEEP_A_BIT"
if [ -s "$LOG" ]; then
fail_ "$STRACE failed to redirect standard input"
fi
-$STRACE -o/dev/null sh -c "exec <&- >&-; $SLEEP_A_BIT; $SLEEP_A_BIT" |
+$STRACE -qq -enone -esignal=none \
+ sh -c "exec <&- >&-; $SLEEP_A_BIT; $SLEEP_A_BIT" |
(
$SLEEP_A_BIT &
cat > /dev/null