Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
varnish-cache
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Commits
Open sidebar
varnishcache
varnish-cache
Commits
f72c7094
Commit
f72c7094
authored
Sep 20, 2011
by
Poul-Henning Kamp
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Disable this test on OSX, the VM mapping is too random to get us
the same address again, even with hinting.
parent
96a4a903
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
10 additions
and
1 deletion
+10
-1
r00962.vtc
bin/varnishtest/tests/r00962.vtc
+3
-0
vtc.c
bin/varnishtest/vtc.c
+7
-1
No files found.
bin/varnishtest/tests/r00962.vtc
View file @
f72c7094
varnishtest "Test address remapping"
# VM-remapping is to random on OSX
feature not-OSX
server s1 {
rxreq
txresp
...
...
bin/varnishtest/vtc.c
View file @
f72c7094
...
...
@@ -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
;
}
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment