spawn: Use special invocation for <spawn.h> on OS/2 kLIBC.
[gnulib.git] / tests / test-nanosleep.c
blob446400661eef0c895dae8cbea614eb4fc20387fd
1 /* Test of nanosleep() function.
2 Copyright (C) 2009-2021 Free Software Foundation, Inc.
4 This program is free software: you can redistribute it and/or modify
5 it under the terms of the GNU General Public License as published by
6 the Free Software Foundation; either version 3 of the License, or
7 (at your option) any later version.
9 This program is distributed in the hope that it will be useful,
10 but WITHOUT ANY WARRANTY; without even the implied warranty of
11 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 GNU General Public License for more details.
14 You should have received a copy of the GNU General Public License
15 along with this program. If not, see <https://www.gnu.org/licenses/>. */
17 /* Written by Eric Blake <ebb9@byu.net>, 2009. */
19 #include <config.h>
21 #include <time.h>
23 #include "signature.h"
24 SIGNATURE_CHECK (nanosleep, int, (struct timespec const *, struct timespec *));
26 #include <errno.h>
27 #include <signal.h>
28 #include <unistd.h>
30 #include "macros.h"
32 #if HAVE_DECL_ALARM
33 static void
34 handle_alarm (int sig)
36 if (sig != SIGALRM)
37 _exit (1);
39 #endif
41 int
42 main (void)
44 struct timespec ts;
46 ts.tv_sec = 1000;
47 ts.tv_nsec = -1;
48 errno = 0;
49 ASSERT (nanosleep (&ts, NULL) == -1);
50 ASSERT (errno == EINVAL);
51 ts.tv_nsec = 1000000000;
52 errno = 0;
53 ASSERT (nanosleep (&ts, NULL) == -1);
54 ASSERT (errno == EINVAL);
56 ts.tv_sec = 0;
57 ts.tv_nsec = 1;
58 ASSERT (nanosleep (&ts, &ts) == 0);
59 /* Remaining time is only defined on EINTR failure; but on success,
60 it is typically either 0 or unchanged from input. At any rate,
61 it shouldn't be randomly changed to unrelated values. */
62 ASSERT (ts.tv_sec == 0);
63 ASSERT (ts.tv_nsec == 0 || ts.tv_nsec == 1);
64 ts.tv_nsec = 0;
65 ASSERT (nanosleep (&ts, NULL) == 0);
67 #if HAVE_DECL_ALARM
69 const time_t pentecost = 50 * 24 * 60 * 60; /* 50 days. */
70 signal (SIGALRM, handle_alarm);
71 alarm (1);
72 ts.tv_sec = pentecost;
73 ts.tv_nsec = 999999999;
74 errno = 0;
75 ASSERT (nanosleep (&ts, &ts) == -1);
76 ASSERT (errno == EINTR);
77 ASSERT (pentecost - 10 < ts.tv_sec && ts.tv_sec <= pentecost);
78 ASSERT (0 <= ts.tv_nsec && ts.tv_nsec <= 999999999);
80 #endif
82 return 0;