From 9ebc62fa2bcb66aa5ca4347129c6f4d0614d63d7 Mon Sep 17 00:00:00 2001 From: phk Date: Thu, 18 Dec 2008 10:32:48 +0000 Subject: [PATCH] Add regressiont test for #409 git-svn-id: svn+ssh://projects.linpro.no/svn/varnish/trunk@3468 d4fa192b-c00b-0410-8231-f00ffab90ce4 --- varnish-cache/bin/varnishtest/tests/r00409.vtc | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 varnish-cache/bin/varnishtest/tests/r00409.vtc diff --git a/varnish-cache/bin/varnishtest/tests/r00409.vtc b/varnish-cache/bin/varnishtest/tests/r00409.vtc new file mode 100644 index 00000000..0b0ae08a --- /dev/null +++ b/varnish-cache/bin/varnishtest/tests/r00409.vtc @@ -0,0 +1,11 @@ +# $Id$ + +test "Regression test for ticket 409" + +varnish v1 -badvcl { + sub vcl_recv { + if ( req.url ~ ! "\.(png|jpg|gif|js|css)$" ) { + return (pass); + } + } +} -- 2.39.5