usleep tests: Avoid failure due to known Cygwin 3.5.3 bug.
[gnulib.git] / tests / test-uname.c
blob492387e641565e87e10e892a7e19b7d3e6ab24ee
1 /* Test of system information.
2 Copyright (C) 2009-2024 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 Bruno Haible <bruno@clisp.org>, 2009. */
19 #include <config.h>
21 #include <sys/utsname.h>
23 #include "signature.h"
24 SIGNATURE_CHECK (uname, int, (struct utsname *));
26 #include <stdio.h>
27 #include <string.h>
29 #include "macros.h"
32 /* This program can be called with no arguments, then it performs a unit
33 test. Or it can be called with 1 argument, then it prints the uname
34 contents to standard output. */
36 int
37 main (int argc, char *argv[])
39 struct utsname buf;
41 memset (&buf, '?', sizeof (buf));
43 ASSERT (uname (&buf) >= 0);
45 /* Verify that every field's value is NUL terminated. */
46 ASSERT (strlen (buf.sysname) < sizeof (buf.sysname));
47 ASSERT (strlen (buf.nodename) < sizeof (buf.nodename));
48 ASSERT (strlen (buf.release) < sizeof (buf.release));
49 ASSERT (strlen (buf.version) < sizeof (buf.version));
50 ASSERT (strlen (buf.machine) < sizeof (buf.machine));
52 if (argc > 1)
54 /* Show the result. */
56 printf ("uname -n = nodename = %s\n", buf.nodename);
57 printf ("uname -s = sysname = %s\n", buf.sysname);
58 printf ("uname -r = release = %s\n", buf.release);
59 printf ("uname -v = version = %s\n", buf.version);
60 printf ("uname -m = machine or cpu = %s\n", buf.machine);
63 return test_exit_status;