tests: avoid some compiler warnings
[gnulib.git] / tests / test-strsignal.c
1 /* Test of strsignal() function.
2    Copyright (C) 2008, 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, or (at your option)
7    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, write to the Free Software Foundation,
16    Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.  */
17
18 /* Written by Colin Watson <cjwatson@debian.org>, 2008.  */
19
20 #include <config.h>
21
22 #include <signal.h>
23 #include <stdio.h>
24 #include <stdlib.h>
25 #include <string.h>
26
27 #define ASSERT(expr) \
28   do                                                                         \
29     {                                                                        \
30       if (!(expr))                                                           \
31         {                                                                    \
32           fprintf (stderr, "%s:%d: assertion failed\n", __FILE__, __LINE__); \
33           fflush (stderr);                                                   \
34           abort ();                                                          \
35         }                                                                    \
36     }                                                                        \
37   while (0)
38
39 #if HAVE_DECL_SYS_SIGLIST
40 # define ASSERT_DESCRIPTION(got, expect)
41 #else
42 /* In this case, we can guarantee some signal descriptions.  */
43 # define ASSERT_DESCRIPTION(got, expect) ASSERT (!strcmp (got, expect))
44 #endif
45
46 int
47 main (void)
48 {
49   /* Work around bug in cygwin 1.5.25 <string.h> by declaring str as
50      const char *, even though strsignal is supposed to return char *.
51      At any rate, this doesn't hurt, since POSIX 200x states that "The
52      string pointed to shall not be modified by the application."  */
53   const char *str;
54
55   /* We try a couple of signals, since not all signals are supported
56      everywhere.  Notwithstanding the #ifdef for neatness, SIGINT should in
57      fact be available on all platforms.  */
58
59 #ifdef SIGHUP
60   str = strsignal (SIGHUP);
61   ASSERT (str);
62   ASSERT (*str);
63   ASSERT_DESCRIPTION (str, "Hangup");
64 #endif
65
66 #ifdef SIGINT
67   str = strsignal (SIGINT);
68   ASSERT (str);
69   ASSERT (*str);
70   ASSERT_DESCRIPTION (str, "Interrupt");
71 #endif
72
73   /* Test that for out-of-range signal numbers the result is usable.  */
74
75   str = strsignal (-1);
76   ASSERT (str);
77   ASSERT (str != (char *) -1);
78   ASSERT (strlen (str));
79
80   str = strsignal (9249234);
81   ASSERT (str);
82   ASSERT (str != (char *) -1);
83   ASSERT (strlen (str));
84
85   return 0;
86 }