1#!/bin/sh 2 3# Check open syscall decoding. 4 5. "${srcdir=.}/init.sh" 6 7run_prog > /dev/null 8syscall=$NAME 9sample=$syscall.sample 10run_strace -a30 -e$syscall -P$sample $args > "$OUT" 11match_diff "$LOG" "$OUT" 12rm -f "$OUT" 13