Dmitry V. Levin
7d23d33933
* tests/prctl-seccomp-filter-v.test: Filter out PR_GET_* prctl calls. Reported-by: Steve McIntyre <steve@einval.com>
14 lines
270 B
Bash
Executable File
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"
|