Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-winehq
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-winehq
Commits
ca293d44
Commit
ca293d44
authored
Oct 18, 2011
by
Jacek Caban
Committed by
Alexandre Julliard
Oct 18, 2011
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
urlmon: Skip tests that fail on too old IEs.
parent
3c4b2a0b
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
10 additions
and
8 deletions
+10
-8
url.c
dlls/urlmon/tests/url.c
+10
-8
No files found.
dlls/urlmon/tests/url.c
View file @
ca293d44
...
...
@@ -3622,15 +3622,17 @@ static void test_StdURLMoniker(void)
ok
(
hres
==
S_OK
,
"CreateAsyncBindCtx failed: %08x
\n\n
"
,
hres
);
CHECK_CALLED
(
QueryInterface_IServiceProvider
);
unk
=
(
void
*
)
0xdeadbeef
;
hres
=
IMoniker_BindToStorage
(
mon
,
bctx
,
NULL
,
&
IID_IStream
,
(
void
**
)
&
unk
);
ok
(
hres
==
MK_E_SYNTAX
,
"BindToStorage failed: %08x, expected MK_E_SYNTAX
\n
"
,
hres
);
ok
(
!
unk
,
"unk = %p
\n
"
,
unk
);
if
(
pCreateUri
)
{
/* Skip these tests on old IEs */
unk
=
(
void
*
)
0xdeadbeef
;
hres
=
IMoniker_BindToStorage
(
mon
,
bctx
,
NULL
,
&
IID_IStream
,
(
void
**
)
&
unk
);
ok
(
hres
==
MK_E_SYNTAX
,
"BindToStorage failed: %08x, expected MK_E_SYNTAX
\n
"
,
hres
);
ok
(
!
unk
,
"unk = %p
\n
"
,
unk
);
unk
=
(
void
*
)
0xdeadbeef
;
hres
=
IMoniker_BindToObject
(
mon
,
bctx
,
NULL
,
&
IID_IUnknown
,
(
void
**
)
&
unk
);
ok
(
hres
==
MK_E_SYNTAX
,
"BindToStorage failed: %08x, expected MK_E_SYNTAX
\n
"
,
hres
);
ok
(
!
unk
,
"unk = %p
\n
"
,
unk
);
unk
=
(
void
*
)
0xdeadbeef
;
hres
=
IMoniker_BindToObject
(
mon
,
bctx
,
NULL
,
&
IID_IUnknown
,
(
void
**
)
&
unk
);
ok
(
hres
==
MK_E_SYNTAX
,
"BindToStorage failed: %08x, expected MK_E_SYNTAX
\n
"
,
hres
);
ok
(
!
unk
,
"unk = %p
\n
"
,
unk
);
}
IMoniker_Release
(
mon
);
}
...
...
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