2019-07-24 10:50:29 +00:00
|
|
|
From 36e3d1b08f697190b259a8421472ec16b52315b5 Mon Sep 17 00:00:00 2001
|
2019-02-28 17:17:53 +00:00
|
|
|
From: =?UTF-8?q?Petr=20Men=C5=A1=C3=ADk?= <pemensik@redhat.com>
|
|
|
|
Date: Wed, 30 Jan 2019 14:37:17 +0100
|
2019-07-24 17:05:06 +00:00
|
|
|
Subject: [PATCH] Create feature-test in source directory
|
2019-02-28 17:17:53 +00:00
|
|
|
|
|
|
|
Feature-test tool is used in system tests to test compiled in changes.
|
|
|
|
Because we build more variants of named with different configuration,
|
|
|
|
compile feature-test for each of them this way.
|
|
|
|
---
|
2019-07-23 13:18:22 +00:00
|
|
|
bin/named/Makefile.in | 11 ++++++++++-
|
2019-02-28 17:17:53 +00:00
|
|
|
bin/tests/system/conf.sh.in | 2 +-
|
2019-07-23 13:18:22 +00:00
|
|
|
2 files changed, 11 insertions(+), 2 deletions(-)
|
2019-02-28 17:17:53 +00:00
|
|
|
|
|
|
|
diff --git a/bin/named/Makefile.in b/bin/named/Makefile.in
|
2019-07-24 10:50:29 +00:00
|
|
|
index 4e8006d..eecfa76 100644
|
2019-02-28 17:17:53 +00:00
|
|
|
--- a/bin/named/Makefile.in
|
|
|
|
+++ b/bin/named/Makefile.in
|
2019-07-24 10:50:29 +00:00
|
|
|
@@ -83,7 +83,7 @@ NOSYMLIBS = ${NSLIBS} ${DNSLIBS} ${BIND9LIBS} \
|
2019-02-28 17:17:53 +00:00
|
|
|
|
|
|
|
SUBDIRS = unix
|
|
|
|
|
2019-07-23 13:18:22 +00:00
|
|
|
-TARGETS = named@EXEEXT@
|
|
|
|
+TARGETS = named@EXEEXT@ feature-test@EXEEXT@
|
2019-02-28 17:17:53 +00:00
|
|
|
|
|
|
|
GEOIPLINKOBJS = geoip.@O@
|
2019-07-24 10:50:29 +00:00
|
|
|
GEOIP2LINKOBJS = geoip.@O@
|
|
|
|
@@ -154,6 +154,15 @@ named@EXEEXT@: ${OBJS} ${DEPLIBS}
|
2019-07-23 13:18:22 +00:00
|
|
|
export BASEOBJS="${OBJS} ${UOBJS}"; \
|
|
|
|
${FINALBUILDCMD}
|
2019-02-28 17:17:53 +00:00
|
|
|
|
|
|
|
+# Bit of hack, do not produce intermediate .o object for featuretest
|
|
|
|
+feature-test.@O@: ${top_srcdir}/bin/tests/system/feature-test.c
|
|
|
|
+ ${LIBTOOL_MODE_COMPILE} ${CC} ${ALL_CFLAGS} \
|
|
|
|
+ -c ${top_srcdir}/bin/tests/system/feature-test.c
|
|
|
|
+
|
|
|
|
+feature-test@EXEEXT@: feature-test.@O@
|
|
|
|
+ ${LIBTOOL_MODE_LINK} ${PURIFY} ${CC} ${CFLAGS} ${LDFLAGS} \
|
|
|
|
+ -o $@ feature-test.@O@ ${ISCLIBS} ${LIBS}
|
|
|
|
+
|
|
|
|
doc man:: ${MANOBJS}
|
|
|
|
|
|
|
|
docclean manclean maintainer-clean::
|
|
|
|
diff --git a/bin/tests/system/conf.sh.in b/bin/tests/system/conf.sh.in
|
2019-07-24 10:50:29 +00:00
|
|
|
index c713d96..20366e5 100644
|
2019-02-28 17:17:53 +00:00
|
|
|
--- a/bin/tests/system/conf.sh.in
|
|
|
|
+++ b/bin/tests/system/conf.sh.in
|
2019-07-24 10:50:29 +00:00
|
|
|
@@ -34,7 +34,7 @@ DELV=$TOP/bin/delv/delv
|
2019-07-23 13:18:22 +00:00
|
|
|
DIG=$TOP/bin/dig/dig
|
|
|
|
DNSTAPREAD=$TOP/bin/tools/dnstap-read
|
|
|
|
DSFROMKEY=$TOP/bin/dnssec/dnssec-dsfromkey
|
2019-02-28 17:17:53 +00:00
|
|
|
-FEATURETEST=$TOP/bin/tests/system/feature-test
|
|
|
|
+FEATURETEST=$TOP/bin/named/feature-test
|
2019-07-23 13:18:22 +00:00
|
|
|
FSTRM_CAPTURE=@FSTRM_CAPTURE@
|
|
|
|
IMPORTKEY=$TOP/bin/dnssec/dnssec-importkey
|
|
|
|
JOURNALPRINT=$TOP/bin/tools/named-journalprint
|
2019-02-28 17:17:53 +00:00
|
|
|
--
|
|
|
|
2.20.1
|
|
|
|
|