Commit f72c7094 authored by Poul-Henning Kamp's avatar Poul-Henning Kamp

Disable this test on OSX, the VM mapping is too random to get us

the same address again, even with hinting.
parent 96a4a903
varnishtest "Test address remapping"
# VM-remapping is to random on OSX
feature not-OSX
server s1 {
rxreq
txresp
......
......@@ -492,7 +492,13 @@ cmd_feature(CMD_ARGS)
if (sizeof(void*) == 8 && !strcmp(av[i], "64bit"))
continue;
vtc_log(vl, 1, "SKIPPING test, missing feature %s", av[i]);
if (!strcmp(av[i], "!OSX")) {
#if !defined(__APPLE__) || !defined(__MACH__)
continue;
#endif
}
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