13 lines
187 B
Bash
Executable file
13 lines
187 B
Bash
Executable file
#!/bin/sh
|
|
|
|
# Check execve syscall decoding.
|
|
|
|
. "${srcdir=.}/init.sh"
|
|
|
|
run_prog
|
|
run_strace $args
|
|
match_grep
|
|
run_strace -v $args
|
|
match_grep "$LOG" "$srcdir/${ME_%.test}-v.expected"
|
|
|
|
exit 0
|