strtoumax: fix typo in previous commit.
[gnulib.git] / tests / test-vasnprintf-posix2.c
index e8acf01..1c8a58b 100644 (file)
@@ -1,5 +1,5 @@
 /* Test of POSIX compatible vasnprintf() and asnprintf() functions.
-   Copyright (C) 2007-2008 Free Software Foundation, Inc.
+   Copyright (C) 2007-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 "vasnprintf.h"
 
 #include <locale.h>
-#include <stdio.h>
 #include <stdlib.h>
 #include <string.h>
 
-#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 (int argc, char *argv[])
@@ -50,9 +39,9 @@ main (int argc, char *argv[])
     char *result = asnprintf (NULL, &length, "%.1a", 1.0);
     ASSERT (result != NULL);
     ASSERT (strcmp (result, "0x1,0p+0") == 0
-           || strcmp (result, "0x2,0p-1") == 0
-           || strcmp (result, "0x4,0p-2") == 0
-           || strcmp (result, "0x8,0p-3") == 0);
+            || strcmp (result, "0x2,0p-1") == 0
+            || strcmp (result, "0x4,0p-2") == 0
+            || strcmp (result, "0x8,0p-3") == 0);
     ASSERT (length == strlen (result));
     free (result);
   }
@@ -63,9 +52,9 @@ main (int argc, char *argv[])
     char *result = asnprintf (NULL, &length, "%.1La", 1.0L);
     ASSERT (result != NULL);
     ASSERT (strcmp (result, "0x1,0p+0") == 0
-           || strcmp (result, "0x2,0p-1") == 0
-           || strcmp (result, "0x4,0p-2") == 0
-           || strcmp (result, "0x8,0p-3") == 0);
+            || strcmp (result, "0x2,0p-1") == 0
+            || strcmp (result, "0x4,0p-2") == 0
+            || strcmp (result, "0x8,0p-3") == 0);
     ASSERT (length == strlen (result));
     free (result);
   }