Move c-stack test into testsuite.
[gnulib.git] / tests / test-strsignal.c
1 /* Test of strsignal() function.
2    Copyright (C) 2008 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 (int argc, char **argv)
48 {
49   char *str;
50
51   /* We try a couple of signals, since not all signals are supported
52      everywhere.  Notwithstanding the #ifdef for neatness, SIGINT should in
53      fact be available on all platforms.  */
54
55 #ifdef SIGHUP
56   str = strsignal (SIGHUP);
57   ASSERT (str);
58   ASSERT (*str);
59   ASSERT_DESCRIPTION (str, "Hangup");
60 #endif
61
62 #ifdef SIGINT
63   str = strsignal (SIGINT);
64   ASSERT (str);
65   ASSERT (*str);
66   ASSERT_DESCRIPTION (str, "Interrupt");
67 #endif
68
69   /* Test that for out-of-range signal numbers the result is usable.  */
70
71   str = strsignal (-1);
72   ASSERT (str);
73   ASSERT (str != (char *) -1);
74   ASSERT (strlen (str));
75
76   str = strsignal (9249234);
77   ASSERT (str);
78   ASSERT (str != (char *) -1);
79   ASSERT (strlen (str));
80
81   return 0;
82 }