summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--ChangeLog3
-rw-r--r--modules/search-tests13
-rw-r--r--tests/test-search.c28
3 files changed, 44 insertions, 0 deletions
diff --git a/ChangeLog b/ChangeLog
index af8c74b714..8218f42741 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,8 @@
2007-03-24 Bruno Haible <bruno@clisp.org>
+ * modules/search-tests: New file.
+ * tests/test-search.c: New file.
+
* modules/search: New file.
* lib/search_.h: New file, incorporating lib/tsearch.h.
* m4/search_h.m4: New file.
diff --git a/modules/search-tests b/modules/search-tests
new file mode 100644
index 0000000000..2bfe80d26a
--- /dev/null
+++ b/modules/search-tests
@@ -0,0 +1,13 @@
+Files:
+tests/test-search.c
+
+Depends-on:
+
+configure.ac:
+
+Makefile.am:
+TESTS += test-search
+check_PROGRAMS += test-search
+
+License:
+LGPL
diff --git a/tests/test-search.c b/tests/test-search.c
new file mode 100644
index 0000000000..074421a303
--- /dev/null
+++ b/tests/test-search.c
@@ -0,0 +1,28 @@
+/* Test of <search.h> substitute.
+ Copyright (C) 2007 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
+ the Free Software Foundation; either version 2, or (at your option)
+ any later version.
+
+ This program is distributed in the hope that it will be useful,
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ GNU General Public License for more details.
+
+ You should have received a copy of the GNU General Public License
+ along with this program; if not, write to the Free Software Foundation,
+ Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. */
+
+/* Written by Bruno Haible <bruno@clisp.org>, 2007. */
+
+#include <config.h>
+
+#include <search.h>
+
+int
+main ()
+{
+ return 0;
+}