summaryrefslogtreecommitdiff
path: root/tests/test-sigaction.c
diff options
context:
space:
mode:
authorBruno Haible <bruno@clisp.org>2009-12-10 20:28:30 +0100
committerBruno Haible <bruno@clisp.org>2009-12-10 20:28:30 +0100
commit441aa3044f43e5572f58c354f01e6bc070acd5c7 (patch)
treebef236e8058dd3469da28ffcd5a6a287222a4c50 /tests/test-sigaction.c
parent039ae97b8ae35a2446c5d62d72b21689c97da7e2 (diff)
downloadgnulib-441aa3044f43e5572f58c354f01e6bc070acd5c7.tar.gz
Use spaces for indentation, not tabs.
Diffstat (limited to 'tests/test-sigaction.c')
-rw-r--r--tests/test-sigaction.c24
1 files changed, 12 insertions, 12 deletions
diff --git a/tests/test-sigaction.c b/tests/test-sigaction.c
index 2269b69653..55da288b42 100644
--- a/tests/test-sigaction.c
+++ b/tests/test-sigaction.c
@@ -24,16 +24,16 @@
#include <stdlib.h>
#define ASSERT(expr) \
- do \
- { \
- if (!(expr)) \
- { \
+ do \
+ { \
+ if (!(expr)) \
+ { \
fprintf (stderr, "%s:%d: assertion failed\n", __FILE__, __LINE__); \
- fflush (stderr); \
- signal (SIGABRT, SIG_DFL); \
- abort (); \
- } \
- } \
+ fflush (stderr); \
+ signal (SIGABRT, SIG_DFL); \
+ abort (); \
+ } \
+ } \
while (0)
#ifndef SA_NOCLDSTOP
@@ -53,7 +53,7 @@
provide other flags as extensions, such as SA_RESTORER, that we
must ignore in this test. */
#define MASK_SA_FLAGS (SA_NOCLDSTOP | SA_ONSTACK | SA_RESETHAND | SA_RESTART \
- | SA_SIGINFO | SA_NOCLDWAIT | SA_NODEFER)
+ | SA_SIGINFO | SA_NOCLDWAIT | SA_NODEFER)
/* This test is unsafe in the presence of an asynchronous SIGABRT,
because we install a signal-handler that is intentionally not
@@ -77,8 +77,8 @@ handler (int sig)
break;
case 1:
/* This assertion fails on glibc-2.3.6 systems with LinuxThreads,
- when this program is linked with -lpthread, due to the sigaction()
- override in libpthread.so. */
+ when this program is linked with -lpthread, due to the sigaction()
+ override in libpthread.so. */
#if !defined __GLIBC__
ASSERT (sa.sa_handler == SIG_DFL);
#endif