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