~ubuntu-branches/ubuntu/lucid/varnish/lucid-updates

« back to all changes in this revision

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

  • Committer: Bazaar Package Importer
  • Author(s): Stig Sandbeck Mathisen
  • Date: 2010-03-24 13:26:08 UTC
  • mfrom: (0.1.7 upstream)
  • Revision ID: james.westby@ubuntu.com-20100324132608-4uzkavctn26bdwyi
Tags: 2.1.0-1
* New upstream version
* Fix small error in man/vcl.7so

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
# $Id$
 
1
# $Id: v00022.vtc 4612 2010-03-16 09:10:19Z phk $
2
2
 
3
3
test "Deeper test of random director"
4
4
 
8
8
        rxreq
9
9
        txresp -body "1"
10
10
} -start
11
 
server s2 -listen 127.0.0.1:9180 {
 
11
server s2 {
12
12
        rxreq
13
13
        txresp -body "22"
14
14
        rxreq
16
16
        rxreq
17
17
        txresp -body "22"
18
18
} -start
19
 
server s3 -listen 127.0.0.1:9181 {
 
19
server s3 {
20
20
        rxreq
21
21
        txresp -body "333"
22
22
} -start
23
 
server s4 -listen 127.0.0.1:9182 {
 
23
server s4 {
24
24
        rxreq
25
25
        txresp -body "4444"
26
26
        rxreq
43
43
 
44
44
        sub vcl_recv {
45
45
                set req.backend = foo;
46
 
                pass;
 
46
                return(pass);
47
47
        }
48
48
} -start
49
49