From: Michał Kępień Date: Tue, 9 Jun 2020 13:35:54 +0000 (+0200) Subject: Disable temporarily unsupported tests on Windows X-Git-Tag: v9.17.2~6^2 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=fef15bc33d163736133854e2baa08a052b0968e1;p=thirdparty%2Fbind9.git Disable temporarily unsupported tests on Windows Due to the changes introduced by the Automake migration, system tests requiring Python (chain, pipelined, qmin, tcp), dynamic loading of shared objects (dlzexternal, dyndb, filter-aaaa), or LMDB (nzd2nzf) currently do not work on Windows. Temporarily disable them on that platform by moving them from the PARALLEL_COMMON list to the PARALLEL_UNIX list until the situation is rectified. --- diff --git a/bin/tests/system/conf.sh.common b/bin/tests/system/conf.sh.common index a571b2d275d..02dd4fa41a9 100644 --- a/bin/tests/system/conf.sh.common +++ b/bin/tests/system/conf.sh.common @@ -63,7 +63,6 @@ cacheclean case catz cds -chain checkconf checknames checkzone @@ -71,17 +70,14 @@ cookie database digdelv dlz -dlzexternal dns64 dscp dsdigest -dyndb ecdsa eddsa ednscompliance emptyzones fetchlimit -filter-aaaa formerr forward geoip2 @@ -104,11 +100,8 @@ names notify nslookup nsupdate -nzd2nzf padding pending -pipelined -qmin reclimit redirect resolver @@ -129,7 +122,6 @@ statistics statschannel stub synthfromdnssec -tcp tkey tools tsig diff --git a/bin/tests/system/conf.sh.in b/bin/tests/system/conf.sh.in index 552b7a0edea..160b8148fc8 100644 --- a/bin/tests/system/conf.sh.in +++ b/bin/tests/system/conf.sh.in @@ -80,7 +80,16 @@ KRB5_CONFIG=/dev/null SEQUENTIAL_UNIX="@PKCS11_TEST@" SEQUENTIALDIRS="$SEQUENTIAL_COMMON $SEQUENTIAL_UNIX" -PARALLEL_UNIX="@DNSTAP@ logfileconfig" +PARALLEL_UNIX="@DNSTAP@ +chain +dlzexternal +dyndb +filter-aaaa +logfileconfig +nzd2nzf +pipelined +qmin +tcp" PARALLELDIRS="$PARALLEL_COMMON $PARALLEL_UNIX" SUBDIRS="$SEQUENTIALDIRS $PARALLELDIRS"