summaryrefslogtreecommitdiff
path: root/tests/test-rbtree_list.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-rbtree_list.c
parenteffbadc5cdd5c424f97367d66297e0e2aa057d63 (diff)
downloadgnulib-987e5651e8d1c5aa933c9ce88562806af4093702.tar.gz
Refactor common macros used in tests.
Diffstat (limited to 'tests/test-rbtree_list.c')
-rw-r--r--tests/test-rbtree_list.c14
1 files changed, 1 insertions, 13 deletions
diff --git a/tests/test-rbtree_list.c b/tests/test-rbtree_list.c
index 1f91492eb5..ecb647dbdf 100644
--- a/tests/test-rbtree_list.c
+++ b/tests/test-rbtree_list.c
@@ -19,11 +19,11 @@
#include "gl_rbtree_list.h"
-#include <stdio.h>
#include <stdlib.h>
#include "gl_array_list.h"
#include "progname.h"
+#include "macros.h"
extern void gl_rbtree_list_check_invariants (gl_list_t list);
@@ -32,18 +32,6 @@ static const char *objects[15] =
"a", "b", "c", "d", "e", "f", "g", "h", "i", "j", "k", "l", "m", "n", "o"
};
-#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)
#define RANDOM(n) (rand () % (n))
#define RANDOM_OBJECT() objects[RANDOM (SIZEOF (objects))]