blob: 599a80cbe4ca3accd203630135cf2f83f73984e3 [file] [log] [blame]
#!/bin/sh
# Check verbose decoding of execve syscall.
. "${srcdir=.}/init.sh"
check_prog grep
run_prog > /dev/null
OUT="$LOG.out"
EXP="$LOG.exp"
run_strace -veexecve $args > "$EXP"
# Filter out execve() call made by strace.
grep -F test.execve < "$LOG" > "$OUT"
match_diff "$OUT" "$EXP"
rm -f "$EXP" "$OUT"