12 lines
195 B
Plaintext
12 lines
195 B
Plaintext
|
#!/bin/sh
|
||
|
|
||
|
# Check verbose decoding of execveat syscall.
|
||
|
|
||
|
. "${srcdir=.}/init.sh"
|
||
|
|
||
|
run_prog > /dev/null
|
||
|
OUT="$LOG.out"
|
||
|
run_strace -veexecveat $args > "$OUT"
|
||
|
match_diff "$LOG" "$OUT"
|
||
|
rm -f "$OUT"
|