]> err.no Git - varnish/commitdiff
Add a -s malloc testcase
authorphk <phk@d4fa192b-c00b-0410-8231-f00ffab90ce4>
Wed, 25 Jun 2008 21:52:55 +0000 (21:52 +0000)
committerphk <phk@d4fa192b-c00b-0410-8231-f00ffab90ce4>
Wed, 25 Jun 2008 21:52:55 +0000 (21:52 +0000)
git-svn-id: svn+ssh://projects.linpro.no/svn/varnish/trunk@2813 d4fa192b-c00b-0410-8231-f00ffab90ce4

varnish-cache/bin/varnishtest/tests/b00006.vtc [new file with mode: 0644]

diff --git a/varnish-cache/bin/varnishtest/tests/b00006.vtc b/varnish-cache/bin/varnishtest/tests/b00006.vtc
new file mode 100644 (file)
index 0000000..a51826f
--- /dev/null
@@ -0,0 +1,25 @@
+# $Id$
+
+test "Check that -s malloc works"
+
+varnish v1 -arg "-s malloc -b 127.0.0.1:9080" -start
+
+server s1 {
+       rxreq 
+       txresp -hdr "Connection: close" -body "012345\n"
+}
+
+server s1 -start 
+
+client c1 {
+       txreq -url "/"
+       rxresp
+       expect resp.status == 200
+}
+
+client c1 -run
+
+server s1 -wait
+
+varnish v1 -stop
+shell "rm ../varnishd/varnishtest_backing"