16 lines
221 B
Bash
Executable file
16 lines
221 B
Bash
Executable file
#!/bin/sh
|
|
|
|
# Check pipe/pipe2 syscalls decoding.
|
|
|
|
. "${srcdir=.}/init.sh"
|
|
|
|
syscall=pipe2
|
|
for n in pipe; do
|
|
$STRACE -e$n -h > /dev/null && syscall=$syscall,$n
|
|
done
|
|
|
|
run_prog
|
|
run_strace -e$syscall $args
|
|
match_grep
|
|
|
|
exit 0
|