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