elf: Add a way to check if tunable is set (BZ 27069)
[glibc.git] / time / tst-ftime.c
blobc89307c2e0eafa5840a09b7d283758a0945a76d4
1 /* Verify that ftime is sane.
2 Copyright (C) 2014-2023 Free Software Foundation, Inc.
3 This file is part of the GNU C Library.
5 The GNU C Library is free software; you can redistribute it and/or
6 modify it under the terms of the GNU Lesser General Public
7 License as published by the Free Software Foundation; either
8 version 2.1 of the License, or (at your option) any later version.
10 The GNU C Library is distributed in the hope that it will be useful,
11 but WITHOUT ANY WARRANTY; without even the implied warranty of
12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13 Lesser General Public License for more details.
15 You should have received a copy of the GNU Lesser General Public
16 License along with the GNU C Library; if not, see
17 <https://www.gnu.org/licenses/>. */
19 #include <features.h>
20 #include <sys/timeb.h>
21 #include <libc-diag.h>
23 #include <support/check.h>
25 static int
26 do_test (void)
28 struct timeb prev, curr = {.time = 0, .millitm = 0};
29 int sec = 0;
31 while (sec != 3)
33 prev = curr;
35 /* ftime was deprecated on 2.31. */
36 DIAG_PUSH_NEEDS_COMMENT;
37 DIAG_IGNORE_NEEDS_COMMENT (4.9, "-Wdeprecated-declarations");
39 TEST_COMPARE (ftime (&curr), 0);
41 DIAG_POP_NEEDS_COMMENT;
43 TEST_VERIFY (curr.time >= prev.time);
45 if (curr.time == prev.time)
46 TEST_VERIFY (curr.millitm >= prev.millitm);
48 if (curr.time > prev.time)
49 sec ++;
51 return 0;
54 #include <support/test-driver.c>