1#!/bin/sh
2
3# Check execve syscall decoding.
4
5. "${srcdir=.}/init.sh"
6
7check_prog grep
8run_prog > /dev/null
9run_strace -eexecve $args > "$EXP"
10
11# Filter out execve() call made by strace.
12grep -F test.execve < "$LOG" > "$OUT"
13match_diff "$OUT" "$EXP"
14