1 #!/bin/sh 2 3 # Check timerfd_create, timerfd_settime, and timerfd_gettime syscalls decoding. 4 5 . "${srcdir=.}/init.sh" 6 7 run_prog > /dev/null 8 OUT="$LOG.out" 9 syscalls=timerfd_create,timerfd_settime,timerfd_gettime 10 run_strace -e trace=$syscalls $args > "$OUT" 11 match_diff "$LOG" "$OUT" 12 rm -f "$OUT" 13 14 exit 0 15