X-Git-Url: http://erislabs.net/gitweb/?a=blobdiff_plain;ds=inline;f=tests%2Ftest-signal.c;h=7103e1ff19cddd1d1ac39a8baf1dcf8420d792cc;hb=47adaa0934a6793f89cdf7af5c02335ec2b7f9d6;hp=b0c11cf84a05c627e42cf177369777cb3a9541a5;hpb=2adf9eb9d57d54eea767e18b550ee26f70d27dcf;p=gnulib.git diff --git a/tests/test-signal.c b/tests/test-signal.c index b0c11cf84..7103e1ff1 100644 --- a/tests/test-signal.c +++ b/tests/test-signal.c @@ -1,5 +1,5 @@ /* Test of substitute. - Copyright (C) 2009 Free Software Foundation, Inc. + Copyright (C) 2009-2011 Free Software Foundation, Inc. This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by @@ -35,6 +35,9 @@ struct #endif } s; +/* Check that NSIG is defined. */ +int nsig = NSIG; + int main (void) { @@ -56,7 +59,8 @@ main (void) #ifdef SIGALRM case SIGALRM: #endif -#ifdef SIGBUS + /* On Haiku, SIGBUS is mistakenly equal to SIGSEGV. */ +#if defined SIGBUS && SIGBUS != SIGSEGV case SIGBUS: #endif #ifdef SIGCHLD @@ -110,9 +114,6 @@ main (void) #ifdef SIGXFSZ case SIGXFSZ: #endif -#ifdef SIG - case SIG: -#endif /* SIGRTMIN and SIGRTMAX need not be compile-time constants. */ #if 0 # ifdef SIGRTMIN