allwinner_a64/android/external/strace/tests/seccomp-strict.test
2018-08-08 16:14:42 +08:00

16 lines
348 B
Bash
Executable file

#!/bin/sh
# Check how seccomp SECCOMP_SET_MODE_STRICT is decoded.
. "${srcdir=.}/init.sh"
set -- "../$NAME"
"$@" > /dev/null || {
case $? in
77) skip_ "$* exited with code 77" ;;
137) framework_skip_ "$* killed by SIGKILL, fix your kernel" ;;
*) fail_ "$args failed" ;;
esac
}
run_strace -eseccomp "$@" > "$EXP"
match_diff "$LOG" "$EXP"