1 #!/bin/sh 2 3 # Check decoding of stat family syscalls. 4 5 . "${srcdir=.}/init.sh" 6 7 syscall=${ME_%.test} 8 run_prog > /dev/null 9 OUT="$LOG.out" 10 run_strace -ve$syscall -P$syscall.sample $args > "$OUT" 11 match_diff "$LOG" "$OUT" 12 rm -f "$OUT" 13 14 exit 0 15