Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
varnishevent3
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
uplex-varnish
varnishevent3
Commits
f4c29c72
Commit
f4c29c72
authored
Sep 20, 2011
by
Poul-Henning Kamp
Committed by
Tollef Fog Heen
Sep 22, 2011
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
38116cf3
Changes
2
Show 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 @
f4c29c72
varnishtest "Test address remapping"
varnishtest "Test address remapping"
# VM-remapping is to random on OSX
feature not-OSX
server s1 {
server s1 {
rxreq
rxreq
txresp
txresp
...
...
bin/varnishtest/vtc.c
View file @
f4c29c72
...
@@ -492,7 +492,13 @@ cmd_feature(CMD_ARGS)
...
@@ -492,7 +492,13 @@ cmd_feature(CMD_ARGS)
if
(
sizeof
(
void
*
)
==
8
&&
!
strcmp
(
av
[
i
],
"64bit"
))
if
(
sizeof
(
void
*
)
==
8
&&
!
strcmp
(
av
[
i
],
"64bit"
))
continue
;
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
;
vtc_stop
=
1
;
return
;
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