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