1 #!/bin/sh 2 3 # Check ppoll syscall decoding. 4 5 . "${srcdir=.}/init.sh" 6 7 run_prog 8 run_strace -s2 -e ppoll $args 9 match_grep 10 run_strace -v -s2 -e ppoll $args 11 match_grep "$LOG" "$srcdir/${ME_%.test}-v.expected" 12 13 exit 0 14