15 lines
200 B
Bash
Executable file
15 lines
200 B
Bash
Executable file
#!/bin/sh
|
|
|
|
# Check how SECCOMP_MODE_FILTER is decoded.
|
|
|
|
. "${srcdir=.}/init.sh"
|
|
|
|
OUT="$LOG.out"
|
|
|
|
run_prog > /dev/null
|
|
run_strace -veprctl $args > "$OUT"
|
|
match_diff "$LOG" "$OUT"
|
|
|
|
rm -f "$OUT"
|
|
|
|
exit 0
|