strace/tests/prctl-seccomp-filter-v.test
Dmitry V. Levin 7d23d33933 prctl-seccomp-filter-v.test: robustify against unrelated prctl invocations
* tests/prctl-seccomp-filter-v.test: Filter out PR_GET_* prctl calls.

Reported-by: Steve McIntyre <steve@einval.com>
2016-04-18 01:10:44 +00:00

14 lines
270 B
Bash
Executable File

#!/bin/sh
# Check verbose decoding of prctl PR_SET_SECCOMP SECCOMP_MODE_FILTER.
. "${srcdir=.}/init.sh"
check_prog grep
run_prog > /dev/null
run_strace -v -eprctl $args > "$EXP"
grep -v '^prctl(PR_GET_' < "$LOG" > "$OUT"
match_diff "$OUT" "$EXP"
rm -f "$EXP" "$OUT"