• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1#!/bin/sh
2
3# Check decoding of pipe syscall.
4. "${srcdir=.}/init.sh"
5
6run_prog
7run_strace -a13 -epipe $args
8
9check_prog grep
10LC_ALL=C grep -x "pipe(.*" "$LOG" > /dev/null ||
11	skip_ 'test executable does not use pipe syscall'
12
13match_diff
14