summaryrefslogtreecommitdiff
path: root/test/interactive-helper
diff options
context:
space:
mode:
authorMichael Vogt <mvo@ubuntu.com>2015-05-22 16:05:05 +0200
committerMichael Vogt <mvo@ubuntu.com>2015-05-22 17:52:54 +0200
commit193f547a93846b850df2b69ce53b9460a4c61eac (patch)
treece8c18a0370e27850f3f0fd9917d228b6e9200d5 /test/interactive-helper
parent7c4511322e22c3d97c6d892204af67d240416e69 (diff)
Add regression test for LP: #1445239
Add a regression test that reproduced the hang of apt when a partial file is present. Git-Dch: ignore
Diffstat (limited to 'test/interactive-helper')
-rw-r--r--test/interactive-helper/aptwebserver.cc2
1 files changed, 2 insertions, 0 deletions
diff --git a/test/interactive-helper/aptwebserver.cc b/test/interactive-helper/aptwebserver.cc
index 9c67b67e4..e02caa2b3 100644
--- a/test/interactive-helper/aptwebserver.cc
+++ b/test/interactive-helper/aptwebserver.cc
@@ -654,6 +654,8 @@ static void * handleClient(void * voidclient) /*{{{*/
if (filesize > filestart)
{
data.Skip(filestart);
+ // make sure to send content-range before conent-length
+ // as regression test for LP: #1445239
std::ostringstream contentrange;
contentrange << "Content-Range: bytes " << filestart << "-"
<< filesize - 1 << "/" << filesize;