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