16 lines
282 B
Plaintext
16 lines
282 B
Plaintext
|
#!/bin/sh
|
||
|
|
||
|
# Check verbose decoding of execve syscall.
|
||
|
|
||
|
. "${srcdir=.}/init.sh"
|
||
|
|
||
|
check_prog grep
|
||
|
run_prog > /dev/null
|
||
|
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"
|