summaryrefslogtreecommitdiff
path: root/lib/tests
diff options
context:
space:
mode:
authorInternet Software Consortium, Inc <@isc.org>2007-09-07 14:08:24 -0600
committerLaMont Jones <lamont@debian.org>2007-09-07 14:08:24 -0600
commitc5b102d4b4b76c54d5cf2576dae9b38d003f39a0 (patch)
tree007a0a3408afda5fd9ec2de4dd66bf32546c940f /lib/tests
parentfc0b5c902db294dff1930e558f8dce9cf060fd42 (diff)
downloadbind9-c5b102d4b4b76c54d5cf2576dae9b38d003f39a0.tar.gz
9.0.0b5
Diffstat (limited to 'lib/tests')
-rw-r--r--lib/tests/Makefile.in4
-rw-r--r--lib/tests/include/Makefile.in4
-rw-r--r--lib/tests/include/tests/Makefile.in2
-rw-r--r--lib/tests/include/tests/t_api.h7
-rw-r--r--lib/tests/t_api.c2
5 files changed, 17 insertions, 2 deletions
diff --git a/lib/tests/Makefile.in b/lib/tests/Makefile.in
index 75d1469d..b46e2a2b 100644
--- a/lib/tests/Makefile.in
+++ b/lib/tests/Makefile.in
@@ -1,4 +1,4 @@
-# Copyright (C) 1998, 1999, 2000 Internet Software Consortium.
+# Copyright (C) 1998-2000 Internet Software Consortium.
#
# Permission to use, copy, modify, and distribute this software for any
# purpose with or without fee is hereby granted, provided that the above
@@ -13,6 +13,8 @@
# ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS
# SOFTWARE.
+# $Id: Makefile.in,v 1.11 2000/06/22 22:00:19 tale Exp $
+
srcdir = @srcdir@
VPATH = @srcdir@
top_srcdir = @top_srcdir@
diff --git a/lib/tests/include/Makefile.in b/lib/tests/include/Makefile.in
index 14531791..e71c5934 100644
--- a/lib/tests/include/Makefile.in
+++ b/lib/tests/include/Makefile.in
@@ -1,4 +1,4 @@
-# Copyright (C) 1998, 1999, 2000 Internet Software Consortium.
+# Copyright (C) 1998-2000 Internet Software Consortium.
#
# Permission to use, copy, modify, and distribute this software for any
# purpose with or without fee is hereby granted, provided that the above
@@ -13,6 +13,8 @@
# ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS
# SOFTWARE.
+# $Id: Makefile.in,v 1.5 2000/06/22 22:00:22 tale Exp $
+
srcdir = @srcdir@
VPATH = @srcdir@
top_srcdir = @top_srcdir@
diff --git a/lib/tests/include/tests/Makefile.in b/lib/tests/include/tests/Makefile.in
index 5a919a02..68b71af6 100644
--- a/lib/tests/include/tests/Makefile.in
+++ b/lib/tests/include/tests/Makefile.in
@@ -13,6 +13,8 @@
# ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS
# SOFTWARE.
+# $Id: Makefile.in,v 1.3 2000/06/22 22:00:24 tale Exp $
+
srcdir = @srcdir@
VPATH = @srcdir@
top_srcdir = @top_srcdir@
diff --git a/lib/tests/include/tests/t_api.h b/lib/tests/include/tests/t_api.h
index 50281a1a..8c2575bd 100644
--- a/lib/tests/include/tests/t_api.h
+++ b/lib/tests/include/tests/t_api.h
@@ -15,11 +15,14 @@
* SOFTWARE.
*/
+/* $Id: t_api.h,v 1.10 2000/06/23 03:10:33 tale Exp $ */
+
#ifndef TESTS_T_API_H
#define TESTS_T_API_H 1
#include <stdio.h>
+#include <isc/lang.h>
#include <isc/result.h>
/*
@@ -60,6 +63,8 @@ typedef struct {
extern int T_debug;
extern testspec_t T_testlist[];
+ISC_LANG_BEGINDECLS
+
void
t_assert(const char *component, int anum, int class, const char *what, ...);
@@ -87,5 +92,7 @@ t_bustline(char *line, char **toks);
int
t_eval(const char *filename, int (*func)(char **), int nargs);
+ISC_LANG_ENDDECLS
+
#endif /* TESTS_T_API_H */
diff --git a/lib/tests/t_api.c b/lib/tests/t_api.c
index a08acbba..200e9cb8 100644
--- a/lib/tests/t_api.c
+++ b/lib/tests/t_api.c
@@ -15,6 +15,8 @@
* SOFTWARE.
*/
+/* $Id: t_api.c,v 1.39 2000/06/22 22:00:21 tale Exp $ */
+
#include <config.h>
#include <ctype.h>