strace/tests/timerfd_xettime.test
Dmitry V. Levin 79cafcd337 tests: add timerfd_xettime.test
* tests/timerfd_xettime.c: New file.
* tests/timerfd_xettime.test: New test.
* tests/Makefile.am (check_PROGRAMS): Add timerfd_xettime.
(TESTS): Add timerfd_xettime.test.
* tests/.gitignore: Add timerfd_xettime.
2015-09-17 23:23:41 +00:00

15 lines
300 B
Bash
Executable File

#!/bin/sh
# Check timerfd_create, timerfd_settime, and timerfd_gettime syscalls decoding.
. "${srcdir=.}/init.sh"
run_prog > /dev/null
OUT="$LOG.out"
syscalls=timerfd_create,timerfd_settime,timerfd_gettime
run_strace -e trace=$syscalls $args > "$OUT"
match_diff "$OUT" "$LOG"
rm -f "$OUT"
exit 0