android_mt6572_jiabo/external/strace/tests/pipe.test
2025-09-05 16:56:03 +08:00

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