
phk at varnish-cache
Aug 13, 2012, 4:06 AM
Post #1 of 1
(51 views)
Permalink
|
|
[master] dc79130 If people only specify the Transient storage, only run on the Transient storage.
|
|
commit dc7913071e7bc19ddc7139b0bc9e13ca99357bda Author: Poul-Henning Kamp <phk [at] FreeBSD> Date: Mon Aug 13 11:05:05 2012 +0000 If people only specify the Transient storage, only run on the Transient storage. Fixes #1176 diff --git a/bin/varnishtest/tests/r01176.vtc b/bin/varnishtest/tests/r01176.vtc new file mode 100644 index 0000000..d9a0a99 --- /dev/null +++ b/bin/varnishtest/tests/r01176.vtc @@ -0,0 +1,14 @@ +varnishtest "-s Transient=malloc crash" + +server s1 { + rxreq + txresp +} -start + +varnish v1 -storage "-s Transient=malloc" -vcl+backend {} -start + +client c1 { + txreq + rxresp + expect resp.status == 200 +} -run _______________________________________________ varnish-commit mailing list varnish-commit [at] varnish-cache https://www.varnish-cache.org/lists/mailman/listinfo/varnish-commit
|