Commit 6829b6ba authored by Nils Goroll's avatar Nils Goroll

test real <op> int

parent 577dab5f
......@@ -115,6 +115,11 @@ varnish v1 -vcl {
set req.http.foo = 3.6 * 1.4;
set req.http.foo = 3.6 / 1.4;
set req.http.foo = 1.0 + 1;
set req.http.foo = 1.0 - 1;
set req.http.foo = 3.0 * 2;
set req.http.foo = 3.0 / 2;
set req.http.foo = req.http.foo ~ "bar";
set req.http.foo = req.http.foo !~ "bar";
set req.http.foo = "foo" ~ "bar";
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment