tests: add signature checks
[gnulib.git] / tests / test-uname.c
1 /* Test of system information.
2    Copyright (C) 2009 Free Software Foundation, Inc.
3
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.
8
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.
13
14    You should have received a copy of the GNU General Public License
15    along with this program.  If not, see <http://www.gnu.org/licenses/>.  */
16
17 /* Written by Bruno Haible <bruno@clisp.org>, 2009.  */
18
19 #include <config.h>
20
21 #include <sys/utsname.h>
22
23 #include "signature.h"
24 SIGNATURE_CHECK (uname, int, (struct utsname *));
25
26 #include <stdio.h>
27 #include <stdlib.h>
28 #include <string.h>
29
30 #define ASSERT(expr) \
31   do                                                                         \
32     {                                                                        \
33       if (!(expr))                                                           \
34         {                                                                    \
35           fprintf (stderr, "%s:%d: assertion failed\n", __FILE__, __LINE__); \
36           fflush (stderr);                                                   \
37           abort ();                                                          \
38         }                                                                    \
39     }                                                                        \
40   while (0)
41
42
43 /* This program can be called with no arguments, then it performs a unit
44    test.  Or it can be called with 1 argument, then it prints the uname
45    contents to standard output.  */
46
47 int
48 main (int argc, char *argv[])
49 {
50   struct utsname buf;
51
52   memset (&buf, '?', sizeof (buf));
53
54   ASSERT (uname (&buf) >= 0);
55
56   /* Verify that every field's value is NUL terminated.  */
57   ASSERT (strlen (buf.sysname) < sizeof (buf.sysname));
58   ASSERT (strlen (buf.nodename) < sizeof (buf.nodename));
59   ASSERT (strlen (buf.release) < sizeof (buf.release));
60   ASSERT (strlen (buf.version) < sizeof (buf.version));
61   ASSERT (strlen (buf.machine) < sizeof (buf.machine));
62
63   if (argc > 1)
64     {
65       /* Show the result.  */
66
67       printf ("uname -n = nodename       = %s\n", buf.nodename);
68       printf ("uname -s = sysname        = %s\n", buf.sysname);
69       printf ("uname -r = release        = %s\n", buf.release);
70       printf ("uname -v = version        = %s\n", buf.version);
71       printf ("uname -m = machine or cpu = %s\n", buf.machine);
72     }
73
74   return 0;
75 }