bootstrap: support checksum utils without a --status option
[gnulib.git] / tests / uniwbrk / test-ulc-wordbreaks.c
index 80284ab..ef1657f 100644 (file)
@@ -1,5 +1,5 @@
 /* Test of word breaks in strings.
-   Copyright (C) 2009 Free Software Foundation, Inc.
+   Copyright (C) 2009-2013 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
 #include "uniwbrk.h"
 
 #include <locale.h>
-#include <stdio.h>
 #include <stdlib.h>
 
-#define SIZEOF(array) (sizeof (array) / sizeof (array[0]))
-#define ASSERT(expr) \
-  do                                                                        \
-    {                                                                       \
-      if (!(expr))                                                          \
-        {                                                                   \
-          fprintf (stderr, "%s:%d: assertion failed\n", __FILE__, __LINE__); \
-          fflush (stderr);                                                  \
-          abort ();                                                         \
-        }                                                                   \
-    }                                                                       \
-  while (0)
+#include "macros.h"
 
 int
 main ()
@@ -59,12 +47,12 @@ main ()
 
     for (i = 0; i < 36; i++)
       {
-       ASSERT (p[i] == ((i >= 4 && i <= 5)
-                        || (i >= 9 && i <= 17)
-                        || (i >= 21 && i <= 25)
-                        || (i >= 28 && i <= 32)
-                        || (i >= 34 && i <= 35)
-                        ? 1 : 0));
+        ASSERT (p[i] == ((i >= 4 && i <= 5)
+                         || (i >= 9 && i <= 17)
+                         || (i >= 21 && i <= 25)
+                         || (i >= 28 && i <= 32)
+                         || (i >= 34 && i <= 35)
+                         ? 1 : 0));
       }
     free (p);
   }