strace/tests/prctl-pdeathsig.test
Dmitry V. Levin a2633e4a59 tests: robustify prctl-pdeathsig.test and prctl-tsc.test
Rrobustify remaining prctl tests against unrelated prctl invocations

* tests/prctl-pdeathsig.test: Filter out unrelated PR_GET_* and PR_SET_*
prctl calls.
* tests/prctl-tsc.test: Likewise.
2016-12-07 16:22:50 +00:00

14 lines
271 B
Bash
Executable File

#!/bin/sh
# Check prctl PR_GET_PDEATHSIG PR_SET_PDEATHSIG decoding.
. "${srcdir=.}/init.sh"
check_prog grep
run_prog > /dev/null
run_strace -a30 -eprctl $args > "$EXP"
grep -v '^prctl(PR_[GS]ET_[^P][^D]' < "$LOG" > "$OUT"
match_diff "$OUT" "$EXP"
rm -f "$EXP" "$OUT"