* tests/ptrace_setoptions: Replace "grep -q" with "grep > /dev/null".
The former may result to strace being killed by SIGPIPE, which in
certain configuratons may lead to generation of a core file.
Suggested by Mike Frysinger.
check_prog timeout
timeout -s 9 9 \
-$STRACE -df -enone /bin/true 2>&1 |
- fgrep -qx 'ptrace_setoptions = 0xe' ||
+$STRACE -df -enone / 2>&1 |
+ grep -F -x 'ptrace_setoptions = 0xe' > /dev/null ||
fail_ 'strace failed to recognize proper kernel PTRACE_O_TRACECLONE support'