glibc/sysdeps/unix/sysv/linux/tst-timerfd.c
Lukasz Majewski dd1776e327 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>
2021-03-02 16:55:05 +01:00

59 lines
1.8 KiB
C

/* Test for timerfd related functions
Copyright (C) 2021 Free Software Foundation, Inc.
This file is part of the GNU C Library.
The GNU C Library is free software; you can redistribute it and/or
modify it under the terms of the GNU Lesser General Public
License as published by the Free Software Foundation; either
version 2.1 of the License, or (at your option) any later version.
The GNU C Library is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
Lesser General Public License for more details.
You should have received a copy of the GNU Lesser General Public
License along with the GNU C Library; if not, see
<https://www.gnu.org/licenses/>. */
#include <time.h>
#include <support/check.h>
#include <support/xunistd.h>
#include <support/timespec.h>
#include <sys/time.h>
#include <sys/timerfd.h>
static int
do_test (void)
{
struct itimerspec settings = { { 0, 0 }, { 2, 0 } };
struct itimerspec val;
int fd, ret;
fd = timerfd_create (CLOCK_REALTIME, 0);
if (fd < 0)
FAIL_EXIT1 ("*** timerfd_create failed: %m");
/* Set the timer. */
ret = timerfd_settime (fd, 0, &settings, NULL);
if (ret != 0)
FAIL_EXIT1 ("*** timerfd_settime failed: %m\n");
/* Sleep for 1 second. */
ret = usleep (1000000);
if (ret != 0)
FAIL_EXIT1 ("*** usleep failed: %m\n");
/* Read the timer just after sleep. */
ret = timerfd_gettime (fd, &val);
if (ret != 0)
FAIL_EXIT1 ("*** timerfd_gettime failed: %m\n");
/* Check difference between timerfd_gettime calls. */
TEST_COMPARE (support_timespec_check_in_range
((struct timespec) { 1, 0 }, val.it_value, 0.9, 1.0), 1);
return 0;
}
#include <support/test-driver.c>