]> git.ipfire.org Git - thirdparty/glibc.git/commit
tst: Fix tst-timerfd test
authorLukasz Majewski <lukma@denx.de>
Sun, 28 Feb 2021 16:28:48 +0000 (17:28 +0100)
committerLukasz Majewski <lukma@denx.de>
Tue, 2 Mar 2021 15:55:05 +0000 (16:55 +0100)
commitdd1776e3275b89b8ff76e8cfd8cd283f51a9aaaf
tree321095b943fc51bfa912dbfebca5922aa8599f71
parentf01a61e13872109b3b233158ab664364bd1879bc
tst: Fix tst-timerfd test

There were following problems discovered for tst-timerfd test:

1. Do not set the struct itimerspec's it_interval tv_sec to 2 seconds.
After this change the timerfd will trigger only once (the it_value is
only set in this case).

2. The 'val1' variable (including the call to timerfd_gettime) is not
needed anymore, as it is just enough to read the struct itimerspec
after sleep. As a consequence the 'val2' has been renamed to 'val'.

3. After calling timerfd_gettime, the value of struct itimerspec time,
when timer is running, is the remaining time. In the case of this test
it would be less than 1 second.
As a result the TEST_COMPARE macro logic had to be adjusted.

Reviewed-by: Adhemerval Zanella <adhemerval.zanella@linaro.org>
sysdeps/unix/sysv/linux/tst-timerfd.c