blob: a445f86e14ec0cee7c364c22f6a4444a7d7bf775 [file] [log] [blame]
Dmitry V. Levin78ed3f32015-03-23 00:04:27 +00001#!/bin/sh
2
3# Check pipe/pipe2 syscalls decoding.
4
5. "${srcdir=.}/init.sh"
6
7syscall=pipe2
8for n in pipe; do
9 $STRACE -e$n -h > /dev/null && syscall=$syscall,$n
10done
11
12run_prog
13run_strace -e$syscall $args
14match_grep
15
16exit 0