summaryrefslogtreecommitdiff
path: root/tests/test-vasnprintf.c
diff options
context:
space:
mode:
authorBruno Haible <bruno@clisp.org>2009-12-24 21:01:42 +0100
committerBruno Haible <bruno@clisp.org>2009-12-24 21:01:42 +0100
commit987e5651e8d1c5aa933c9ce88562806af4093702 (patch)
tree4a7d023ba4f5f6c20bc5a1b68ab678e934afc4b0 /tests/test-vasnprintf.c
parenteffbadc5cdd5c424f97367d66297e0e2aa057d63 (diff)
downloadgnulib-987e5651e8d1c5aa933c9ce88562806af4093702.tar.gz
Refactor common macros used in tests.
Diffstat (limited to 'tests/test-vasnprintf.c')
-rw-r--r--tests/test-vasnprintf.c15
1 files changed, 2 insertions, 13 deletions
diff --git a/tests/test-vasnprintf.c b/tests/test-vasnprintf.c
index 280e1f47f2..2f7f0dbed4 100644
--- a/tests/test-vasnprintf.c
+++ b/tests/test-vasnprintf.c
@@ -1,5 +1,5 @@
/* Test of vasnprintf() and asnprintf() functions.
- Copyright (C) 2007-2008 Free Software Foundation, Inc.
+ Copyright (C) 2007-2009 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
@@ -21,21 +21,10 @@
#include "vasnprintf.h"
#include <stdarg.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"
static char *
my_asnprintf (char *resultbuf, size_t *lengthp, const char *format, ...)