~ubuntu-branches/debian/sid/varnish/sid

« back to all changes in this revision

Viewing changes to bin/varnishtest/tests/r00733.vtc

  • Committer: Bazaar Package Importer
  • Author(s): Stig Sandbeck Mathisen
  • Date: 2011-03-21 10:16:07 UTC
  • mfrom: (24.1.2 experimental)
  • Revision ID: james.westby@ubuntu.com-20110321101607-528fzl583fqanas5
Tags: 2.1.5-2
ReleaseĀ forĀ unstable

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
# $Id$
 
2
 
 
3
test "HTTP/1.1 Backend sends no length hint"
 
4
 
 
5
server s1 {
 
6
        rxreq
 
7
        send "HTTP/1.1 200 Ok\n"
 
8
        send "\n"
 
9
        send "12345"
 
10
} -start
 
11
 
 
12
varnish v1 -vcl+backend {} -start
 
13
 
 
14
client c1 {
 
15
        txreq
 
16
        rxresp
 
17
        expect resp.bodylen == 5
 
18
} -run