You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

17 lines
348 B

#!/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"