2007-03-02 Bruno Haible <bruno@clisp.org>
- * modules/rbtreehash-list-tests (Depends-on): Add progname.
- * tests/test-rbtreehash_list.c: Include progname.h.
+ * modules/rbtree-oset-tests (Depends-on): Add progname.
+ * tests/test-rbtree_oset.c: Include progname.h.
+ (main): Call set_program_name.
+
+ * modules/rbtree-list-tests (Depends-on): Add progname.
+ * tests/test-rbtree_list.c: Include progname.h.
(main): Call set_program_name.
* modules/linked-list-tests (Depends-on): Add progname.
Depends-on:
array-list
+progname
configure.ac:
Depends-on:
array-oset
+progname
configure.ac:
Depends-on:
array-list
+progname
configure.ac:
/* 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 <bruno@clisp.org>, 2006.
This program is free software; you can redistribute it and/or modify
# include <config.h>
#endif
+#include "gl_rbtree_list.h"
+
#include <stdlib.h>
#include "gl_array_list.h"
-#include "gl_rbtree_list.h"
+#include "progname.h"
extern void gl_rbtree_list_check_invariants (gl_list_t list);
{
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]));
/* Test of ordered set data type implementation.
- Copyright (C) 2006 Free Software Foundation, Inc.
+ Copyright (C) 2006-2007 Free Software Foundation, Inc.
Written by Bruno Haible <bruno@clisp.org>, 2006.
This program is free software; you can redistribute it and/or modify
# include <config.h>
#endif
+#include "gl_rbtree_oset.h"
+
#include <stdlib.h>
#include <string.h>
#include "gl_array_oset.h"
-#include "gl_rbtree_oset.h"
+#include "progname.h"
extern void gl_rbtree_oset_check_invariants (gl_oset_t set);
{
gl_oset_t set1, set2;
+ 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]));
/* 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 <bruno@clisp.org>, 2006.
This program is free software; you can redistribute it and/or modify
# include <config.h>
#endif
+#include "gl_rbtreehash_list.h"
+
#include <limits.h>
#include <stdlib.h>
#include <string.h>
#include "gl_array_list.h"
-#include "gl_rbtreehash_list.h"
+#include "progname.h"
extern void gl_rbtreehash_list_check_invariants (gl_list_t list);
{
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]));