summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorJulian Andres Klode <jak@debian.org>2016-01-12 15:18:12 +0100
committerJulian Andres Klode <jak@debian.org>2016-01-12 23:40:59 +0100
commitb6d88f39aceda2e093e1bf8751f07236b7d9e483 (patch)
tree8ac4947fbf48085fad2bf78ae9ce21d8f844cb15 /test
parentfe4a53782211c459e8a50654055ad4f797ad1f3b (diff)
Only enable pipelining if server is HTTP/1.1
Just enabling it for anyone breaks with HTTP/1.0 servers and proxies sometimes. Closes: #810796
Diffstat (limited to 'test')
-rwxr-xr-xtest/integration/test-http-pipeline-messup5
1 files changed, 3 insertions, 2 deletions
diff --git a/test/integration/test-http-pipeline-messup b/test/integration/test-http-pipeline-messup
index 4069beb0d..95e890baf 100755
--- a/test/integration/test-http-pipeline-messup
+++ b/test/integration/test-http-pipeline-messup
@@ -8,6 +8,7 @@ setupenvironment
configarchitecture "i386"
# try a little harder to create a size mismatch
+buildsimplenativepackage 'pkg0' 'all' '1.0' 'stable' "Depends: foo" '' '' '' '' 'none'
buildsimplenativepackage 'pkga' 'all' '1.0' 'stable' "Depends: foo" '' '' '' '' 'none'
buildsimplenativepackage 'pkgb' 'all' '1.0' 'stable' "Depends: foo" '' '' '' '' 'none'
buildsimplenativepackage 'pkgc' 'all' '1.0' 'stable' "Depends: f$(for i in $(seq 0 1000); do printf 'o'; done)" '' '' '' '' 'none'
@@ -43,8 +44,8 @@ done
echo 'Acquire::http::Pipeline-Depth 10;' > ../rootdir/etc/apt/apt.conf.d/99enable-pipeline
# the output is a bit strange: it looks like it has downloaded pkga 4 times
-testwarning aptget download pkga pkgb pkgc pkgd
-for pkg in 'pkga' 'pkgb' 'pkgc' 'pkgd'; do
+testwarning aptget download pkg0 pkga pkgb pkgc pkgd
+for pkg in 'pkg0' 'pkga' 'pkgb' 'pkgc' 'pkgd'; do
testsuccess test -f ${pkg}_1.0_all.deb
testsuccess cmp ../incoming/${pkg}_1.0_all.deb ${pkg}_1.0_all.deb
rm -f ${pkg}_1.0_all.deb