]> granicus.if.org Git - strace/blob - tests/clock_xettime.test
tests: move definitions of $OUT and $ERR to init.sh
[strace] / tests / clock_xettime.test
1 #!/bin/sh
2
3 # Check clock_getres, clock_gettime, and clock_settime syscalls decoding.
4
5 . "${srcdir=.}/init.sh"
6
7 run_prog > /dev/null
8 syscalls=clock_getres,clock_gettime,clock_settime
9 run_strace -a36 -e trace=$syscalls $args > "$OUT"
10 match_diff "$LOG" "$OUT"
11 rm -f "$OUT"
12
13 exit 0