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