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
ab75abbe
Commit
ab75abbe
authored
Mar 10, 2009
by
Paul Vriens
Committed by
Alexandre Julliard
Mar 10, 2009
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
wininet/tests: Skip tests if functions are not implemented.
parent
947bf583
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
11 additions
and
0 deletions
+11
-0
internet.c
dlls/wininet/tests/internet.c
+11
-0
No files found.
dlls/wininet/tests/internet.c
View file @
ab75abbe
...
...
@@ -354,7 +354,13 @@ static void test_null(void)
BOOL
r
;
DWORD
sz
;
SetLastError
(
0xdeadbeef
);
hi
=
InternetOpenW
(
NULL
,
0
,
NULL
,
NULL
,
0
);
if
(
hi
==
NULL
&&
GetLastError
()
==
ERROR_CALL_NOT_IMPLEMENTED
)
{
win_skip
(
"Internet*W functions are not implemented
\n
"
);
return
;
}
ok
(
hi
!=
NULL
,
"open failed
\n
"
);
hc
=
InternetConnectW
(
hi
,
NULL
,
0
,
NULL
,
NULL
,
0
,
0
,
0
);
...
...
@@ -644,6 +650,11 @@ static void test_IsDomainLegalCookieDomainW(void)
SetLastError
(
0xdeadbeef
);
ret
=
pIsDomainLegalCookieDomainW
(
NULL
,
NULL
);
error
=
GetLastError
();
if
(
!
ret
&&
error
==
ERROR_CALL_NOT_IMPLEMENTED
)
{
win_skip
(
"IsDomainLegalCookieDomainW is not implemented
\n
"
);
return
;
}
ok
(
!
ret
||
broken
(
ret
),
/* IE6 */
"IsDomainLegalCookieDomainW succeeded
\n
"
);
...
...
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