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.
This commit is contained in:
Michał Kępień
2020-06-09 15:35:54 +02:00
parent 1861866f63
commit fef15bc33d
2 changed files with 10 additions and 9 deletions

View File

@@ -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

View File

@@ -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"