diff options
author | David Kalnischkies <david@kalnischkies.de> | 2015-11-03 16:05:14 +0100 |
---|---|---|
committer | David Kalnischkies <david@kalnischkies.de> | 2015-11-04 18:42:28 +0100 |
commit | 23d35ec15a849ee755f51a99939b0131e8faefa5 (patch) | |
tree | afd33d375029dd10dc29b4b9528c5809e32a4252 /test | |
parent | ce1f3a2c616b86da657c1c796efa5f4d18c30c39 (diff) |
allow getaddrinfo flag AI_ADDRCONFIG to be disabled
This flags is generally handy to avoid having to deal with ipv6 results on an
ipv4-only system, but it prevents e.g. the testcases from working if the
testsystem has no configured address at the moment (expect loopback), so
allow it to be sidestepped and let the testcases sidestep it.
Git-Dch: Ignore
Diffstat (limited to 'test')
-rw-r--r-- | test/integration/framework | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/test/integration/framework b/test/integration/framework index 04f54c8e2..f1e2fa090 100644 --- a/test/integration/framework +++ b/test/integration/framework @@ -377,6 +377,7 @@ EOF fi echo "Acquire::https::CaInfo \"${TMPWORKINGDIRECTORY}/rootdir/etc/webserver.pem\";" > rootdir/etc/apt/apt.conf.d/99https echo "Apt::Cmd::Disable-Script-Warning \"1\";" > rootdir/etc/apt/apt.conf.d/apt-binary + echo 'Acquire::Connect::AddrConfig "false";' > rootdir/etc/apt/apt.conf.d/connect-addrconfig configcompression '.' 'gz' #'bz2' 'lzma' 'xz' confighashes 'SHA1' # these are tests, not security best-practices |