r3652 - branches/2.0/varnish-cache/bin/varnishtest/tests
tfheen at projects.linpro.no
tfheen at projects.linpro.no
Fri Feb 6 12:38:07 CET 2009
Author: tfheen
Date: 2009-02-06 12:38:07 +0100 (Fri, 06 Feb 2009)
New Revision: 3652
Modified:
branches/2.0/varnish-cache/bin/varnishtest/tests/c00008.vtc
Log:
Merge r3453: Wrap some long lines
Modified: branches/2.0/varnish-cache/bin/varnishtest/tests/c00008.vtc
===================================================================
--- branches/2.0/varnish-cache/bin/varnishtest/tests/c00008.vtc 2009-02-06 11:31:02 UTC (rev 3651)
+++ branches/2.0/varnish-cache/bin/varnishtest/tests/c00008.vtc 2009-02-06 11:38:07 UTC (rev 3652)
@@ -5,7 +5,8 @@
server s1 {
rxreq
expect req.url == "/foo"
- txresp -hdr "Last-Modified: Thu, 26 Jun 2008 12:00:01 GMT" -body "11111\n"
+ txresp -hdr "Last-Modified: Thu, 26 Jun 2008 12:00:01 GMT" \
+ -body "11111\n"
} -start
varnish v1 -vcl+backend { } -start
@@ -16,15 +17,18 @@
expect resp.status == 200
expect resp.http.content-length == 6
- txreq -url "/foo" -hdr "If-Modified-Since: Thu, 26 Jun 2008 12:00:00 GMT"
+ txreq -url "/foo" \
+ -hdr "If-Modified-Since: Thu, 26 Jun 2008 12:00:00 GMT"
rxresp
expect resp.status == 200
- txreq -url "/foo" -hdr "If-Modified-Since: Thu, 26 Jun 2008 12:00:01 GMT"
+ txreq -url "/foo" \
+ -hdr "If-Modified-Since: Thu, 26 Jun 2008 12:00:01 GMT"
rxresp
expect resp.status == 304
- txreq -url "/foo" -hdr "If-Modified-Since: Thu, 26 Jun 2008 12:00:02 GMT"
+ txreq -url "/foo" \
+ -hdr "If-Modified-Since: Thu, 26 Jun 2008 12:00:02 GMT"
rxresp
expect resp.status == 304
}
More information about the varnish-commit
mailing list