summaryrefslogtreecommitdiff
path: root/dist/bind/lib/tests
diff options
context:
space:
mode:
Diffstat (limited to 'dist/bind/lib/tests')
-rw-r--r--dist/bind/lib/tests/Makefile.in4
-rw-r--r--dist/bind/lib/tests/include/tests/t_api.h5
-rw-r--r--dist/bind/lib/tests/t_api.c8
3 files changed, 11 insertions, 6 deletions
diff --git a/dist/bind/lib/tests/Makefile.in b/dist/bind/lib/tests/Makefile.in
index e8d8b96824f..0a17d0e77e5 100644
--- a/dist/bind/lib/tests/Makefile.in
+++ b/dist/bind/lib/tests/Makefile.in
@@ -13,7 +13,7 @@
# OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
# PERFORMANCE OF THIS SOFTWARE.
-# Id: Makefile.in,v 1.14.12.6 2004/03/06 08:15:46 marka Exp
+# Id: Makefile.in,v 1.14.12.7 2004/07/20 07:01:59 marka Exp
srcdir = @srcdir@
VPATH = @srcdir@
@@ -46,7 +46,7 @@ libt_api.@SA@: ${OBJS}
libt_api.la: ${OBJS}
${LIBTOOL_MODE_LINK} \
- ${CC} ${ALL_CFLAGS} -o libt_api.la -rpath ${libdir} \
+ ${CC} ${ALL_CFLAGS} ${LDFLAGS} -o libt_api.la -rpath ${libdir} \
${OBJS} ${ISCLIBS} ${LIBS} -allow-undefined
timestamp: libt_api.@A@
diff --git a/dist/bind/lib/tests/include/tests/t_api.h b/dist/bind/lib/tests/include/tests/t_api.h
index d6c28352266..7b8f1004703 100644
--- a/dist/bind/lib/tests/include/tests/t_api.h
+++ b/dist/bind/lib/tests/include/tests/t_api.h
@@ -1,4 +1,4 @@
-/* $NetBSD: t_api.h,v 1.1.1.1 2004/05/17 23:45:12 christos Exp $ */
+/* $NetBSD: t_api.h,v 1.1.1.2 2004/11/06 23:56:02 christos Exp $ */
/*
* Copyright (C) 2004 Internet Systems Consortium, Inc. ("ISC")
@@ -17,7 +17,7 @@
* PERFORMANCE OF THIS SOFTWARE.
*/
-/* Id: t_api.h,v 1.14.206.1 2004/03/06 08:15:47 marka Exp */
+/* Id: t_api.h,v 1.14.206.2 2004/06/21 06:58:02 marka Exp */
#ifndef TESTS_T_API_H
#define TESTS_T_API_H 1
@@ -39,6 +39,7 @@
#define T_UNRESOLVED 0x3
#define T_UNSUPPORTED 0x4
#define T_UNTESTED 0x5
+#define T_THREADONLY 0x6
/*
*
diff --git a/dist/bind/lib/tests/t_api.c b/dist/bind/lib/tests/t_api.c
index 1401f655cd5..ac1ff43933d 100644
--- a/dist/bind/lib/tests/t_api.c
+++ b/dist/bind/lib/tests/t_api.c
@@ -1,4 +1,4 @@
-/* $NetBSD: t_api.c,v 1.1.1.1 2004/05/17 23:45:12 christos Exp $ */
+/* $NetBSD: t_api.c,v 1.1.1.2 2004/11/06 23:56:02 christos Exp $ */
/*
* Copyright (C) 2004 Internet Systems Consortium, Inc. ("ISC")
@@ -17,7 +17,7 @@
* PERFORMANCE OF THIS SOFTWARE.
*/
-/* Id: t_api.c,v 1.48.2.1.2.4 2004/03/08 09:05:13 marka Exp */
+/* Id: t_api.c,v 1.48.2.1.2.6 2004/08/28 06:25:27 marka Exp */
#include <config.h>
@@ -35,6 +35,7 @@
#include <isc/boolean.h>
#include <isc/commandline.h>
+#include <isc/print.h>
#include <isc/string.h>
#include <dns/compress.h>
@@ -392,6 +393,9 @@ t_result(int result) {
case T_UNTESTED:
p = "UNTESTED";
break;
+ case T_THREADONLY:
+ p = "THREADONLY";
+ break;
default:
p = "UNKNOWN";
break;