Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-cw
Project
Project
Details
Activity
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
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
wine
wine-cw
Commits
e108c2db
Commit
e108c2db
authored
Sep 07, 2011
by
Alistair Leslie-Hughes
Committed by
Alexandre Julliard
Sep 07, 2011
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
msxml3: Correct Objsafe tests for older msxml3.
parent
73f9dd1c
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
8 additions
and
7 deletions
+8
-7
domdoc.c
dlls/msxml3/tests/domdoc.c
+8
-7
No files found.
dlls/msxml3/tests/domdoc.c
View file @
e108c2db
...
...
@@ -4458,10 +4458,10 @@ static void _test_IObjectSafety_common(unsigned line, IObjectSafety *safety)
hr
=
IObjectSafety_GetInterfaceSafetyOptions
(
safety
,
NULL
,
&
supported
,
&
enabled
);
ok_
(
__FILE__
,
line
)(
hr
==
S_OK
,
"ret %08x
\n
"
,
hr
);
ok_
(
__FILE__
,
line
)(
enabled
==
INTERFACESAFE_FOR_UNTRUSTED_CALLER
,
"Expected INTERFACESAFE_FOR_UNTRUSTED_CALLER got %08x
\n
"
,
enabled
);
ok_
(
__FILE__
,
line
)(
broken
(
supported
==
INTERFACESAFE_FOR_UNTRUSTED_CALLER
)
||
ok_
(
__FILE__
,
line
)(
broken
(
supported
==
(
INTERFACESAFE_FOR_UNTRUSTED_CALLER
|
INTERFACESAFE_FOR_UNTRUSTED_DATA
)
)
||
supported
==
(
INTERFACESAFE_FOR_UNTRUSTED_CALLER
|
INTERFACESAFE_FOR_UNTRUSTED_DATA
|
INTERFACE_USES_SECURITY_MANAGER
)
/* msxml3 SP8+ */
,
"Expected (INTERFACESAFE_FOR_UNTRUSTED_CALLER | INTERFACESAFE_FOR_UNTRUSTED_DATA | INTERFACE_USES_SECURITY_MANAGER), "
"got %08x
\n
"
,
supported
);
"Expected (INTERFACESAFE_FOR_UNTRUSTED_CALLER | INTERFACESAFE_FOR_UNTRUSTED_DATA | INTERFACE_USES_SECURITY_MANAGER), "
"got %08x
\n
"
,
supported
);
hr
=
IObjectSafety_SetInterfaceSafetyOptions
(
safety
,
NULL
,
INTERFACESAFE_FOR_UNTRUSTED_DATA
,
...
...
@@ -4469,12 +4469,13 @@ static void _test_IObjectSafety_common(unsigned line, IObjectSafety *safety)
ok_
(
__FILE__
,
line
)(
hr
==
S_OK
,
"ret %08x
\n
"
,
hr
);
hr
=
IObjectSafety_GetInterfaceSafetyOptions
(
safety
,
NULL
,
&
supported
,
&
enabled
);
ok_
(
__FILE__
,
line
)(
hr
==
S_OK
,
"ret %08x
\n
"
,
hr
);
ok_
(
__FILE__
,
line
)(
enabled
==
(
INTERFACESAFE_FOR_UNTRUSTED_CALLER
|
INTERFACESAFE_FOR_UNTRUSTED_DATA
),
"expected INTERFACESAFE_FOR_UNTRUSTED_CALLER | INTERFACESAFE_FOR_UNTRUSTED_DATA got %08x
\n
"
,
enabled
);
ok_
(
__FILE__
,
line
)(
broken
(
supported
==
INTERFACESAFE_FOR_UNTRUSTED_DATA
)
||
ok_
(
__FILE__
,
line
)(
broken
(
enabled
==
INTERFACESAFE_FOR_UNTRUSTED_DATA
)
||
enabled
==
(
INTERFACESAFE_FOR_UNTRUSTED_CALLER
|
INTERFACESAFE_FOR_UNTRUSTED_DATA
),
"Expected (INTERFACESAFE_FOR_UNTRUSTED_CALLER | INTERFACESAFE_FOR_UNTRUSTED_DATA) got %08x
\n
"
,
enabled
);
ok_
(
__FILE__
,
line
)(
broken
(
supported
==
(
INTERFACESAFE_FOR_UNTRUSTED_CALLER
|
INTERFACESAFE_FOR_UNTRUSTED_DATA
))
||
supported
==
(
INTERFACESAFE_FOR_UNTRUSTED_CALLER
|
INTERFACESAFE_FOR_UNTRUSTED_DATA
|
INTERFACE_USES_SECURITY_MANAGER
)
/* msxml3 SP8+ */
,
"Expected (INTERFACESAFE_FOR_UNTRUSTED_CALLER | INTERFACESAFE_FOR_UNTRUSTED_DATA | INTERFACE_USES_SECURITY_MANAGER), "
"got %08x
\n
"
,
supported
);
"got %08x
\n
"
,
supported
);
}
static
void
test_XMLHTTP
(
void
)
...
...
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