time: Fix compile error in itimer test affecting hurd
authorStafford Horne <shorne@gmail.com>
Thu, 19 Aug 2021 14:47:07 +0000 (23:47 +0900)
committerStafford Horne <shorne@gmail.com>
Wed, 15 Sep 2021 20:21:08 +0000 (05:21 +0900)
commit5604830dea207bbd5fd5dbe087cc7ca30b527bb5
tree23498103fc324178527490e783ff667c40302ee4
parent2444ce5421c6036a503842d8dd8d93c27aad59ee
time: Fix compile error in itimer test affecting hurd

The recent change to use __KERNEL_OLD_TIMEVAL_MATCHES_TIMEVAL64 to avoid
doing 64-bit checks on some platforms broke the test for hurd where
__KERNEL_OLD_TIMEVAL_MATCHES_TIMEVAL64 is not defined.  With error:

    tst-itimer.c: In function 'do_test':
    tst-itimer.c:103:11: error: '__KERNEL_OLD_TIMEVAL_MATCHES_TIMEVAL64' undeclared (first use in this function)
      103 |       if (__KERNEL_OLD_TIMEVAL_MATCHES_TIMEVAL64)
  |           ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
    tst-itimer.c:103:11: note: each undeclared identifier is reported only once for each function it appears in

Define a support helper to detect when setitimer and getitimer support
64-bit time_t.

Fixes commit 6e8a0aac2f ("time: Fix overflow itimer tests on 32-bit
systems").

Cc: Adhemerval Zanella <adhemerval.zanella@linaro.org>
Cc: Joseph Myers <joseph@codesourcery.com>
support/support.h
time/tst-itimer.c