Commit 542e9e55 authored by Poul-Henning Kamp's avatar Poul-Henning Kamp

Try to limit r00693 to 64 bit systems.



git-svn-id: http://www.varnish-cache.org/svn/trunk/varnish-cache@4844 d4fa192b-c00b-0410-8231-f00ffab90ce4
parent 1a35200f
......@@ -3,6 +3,8 @@
test "check boundary condition on vrt_assemble_string()"
feature 64bit
server s1 {
rxreq
expect req.http.baz == "req.http.baz"
......
......@@ -482,6 +482,9 @@ cmd_feature(CMD_ARGS)
if (!strcmp(av[i], "SO_RCVTIMEO_WORKS"))
continue;
#endif
if (sizeof(void*) == 8 && !strcmp(av[i], "64bit"))
continue;
vtc_log(vl, 1, "SKIPPING test, missing feature %s", av[i]);
vtc_stop = 1;
return;
......
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