Home | History | Annotate | Download | only in tests
      1 #!/bin/sh
      2 
      3 # Check ppoll syscall decoding.
      4 
      5 . "${srcdir=.}/init.sh"
      6 
      7 run_prog
      8 run_strace -a30 -s2 -e ppoll $args
      9 match_grep
     10 run_strace -a30 -v -s2 -e ppoll $args
     11 match_grep "$LOG" "$srcdir/$NAME-v.expected"
     12 
     13 exit 0
     14