X-Git-Url: http://erislabs.net/gitweb/?a=blobdiff_plain;ds=sidebyside;f=tests%2Ftest-avltreehash_list.c;h=28697fec5f2db0050b529b8a0f0b9b004e353d25;hb=3f4d4d8853c9f26c9597aa021defa6b0b1861aa4;hp=dc1f6e85b11cea4a2fb6423741d51febec687032;hpb=a8de9261d37e784ac5d53aefa174d8da26d1c4b2;p=gnulib.git diff --git a/tests/test-avltreehash_list.c b/tests/test-avltreehash_list.c index dc1f6e85b..28697fec5 100644 --- a/tests/test-avltreehash_list.c +++ b/tests/test-avltreehash_list.c @@ -1,5 +1,5 @@ /* Test of sequential list data type implementation. - Copyright (C) 2006 Free Software Foundation, Inc. + Copyright (C) 2006-2007 Free Software Foundation, Inc. Written by Bruno Haible , 2006. This program is free software; you can redistribute it and/or modify @@ -16,16 +16,17 @@ along with this program; if not, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. */ -#ifdef HAVE_CONFIG_H -# include -#endif +#include + +#include "gl_avltreehash_list.h" #include +#include #include #include #include "gl_array_list.h" -#include "gl_avltreehash_list.h" +#include "progname.h" extern void gl_avltreehash_list_check_invariants (gl_list_t list); @@ -60,7 +61,16 @@ string_hash (const void *x) } #define SIZEOF(array) (sizeof (array) / sizeof (array[0])) -#define ASSERT(condition) if (!(condition)) abort () +#define ASSERT(expr) \ + do \ + { \ + if (!(expr)) \ + { \ + fprintf (stderr, "%s:%d: assertion failed\n", __FILE__, __LINE__); \ + abort (); \ + } \ + } \ + while (0) #define RANDOM(n) (rand () % (n)) #define RANDOM_OBJECT() objects[RANDOM (SIZEOF (objects))] @@ -91,6 +101,8 @@ main (int argc, char *argv[]) { gl_list_t list1, list2, list3; + set_program_name (argv[0]); + /* Allow the user to provide a non-default random seed on the command line. */ if (argc > 1) srand (atoi (argv[1])); @@ -107,17 +119,17 @@ main (int argc, char *argv[]) /* Create list1. */ list1 = gl_list_create (GL_ARRAY_LIST, - string_equals, string_hash, true, + string_equals, string_hash, NULL, true, initial_size, contents); /* Create list2. */ list2 = gl_list_create_empty (GL_AVLTREEHASH_LIST, - string_equals, string_hash, true); + string_equals, string_hash, NULL, true); for (i = 0; i < initial_size; i++) gl_list_add_last (list2, contents[i]); /* Create list3. */ list3 = gl_list_create (GL_AVLTREEHASH_LIST, - string_equals, string_hash, true, + string_equals, string_hash, NULL, true, initial_size, contents); check_all (list1, list2, list3);