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
4a781276
Commit
4a781276
authored
May 13, 2009
by
Paul Vriens
Committed by
Alexandre Julliard
May 13, 2009
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
wininet/tests: Fix some test failures with IE8 on W2K3.
parent
a1cac2c3
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
3 deletions
+4
-3
internet.c
dlls/wininet/tests/internet.c
+4
-3
No files found.
dlls/wininet/tests/internet.c
View file @
4a781276
...
...
@@ -742,8 +742,9 @@ static void test_IsDomainLegalCookieDomainW(void)
error
=
GetLastError
();
ok
(
!
ret
,
"IsDomainLegalCookieDomainW succeeded
\n
"
);
ok
(
error
==
ERROR_SXS_KEY_NOT_FOUND
||
error
==
ERROR_SUCCESS
||
/* IE8 on W2K3 */
error
==
0xdeadbeef
,
/* up to IE7 */
"
got %u expected ERROR_SXS_KEY_NOT_FOUND or 0xdeadbeef
\n
"
,
error
);
"
unexpected error: %u
\n
"
,
error
);
ret
=
pIsDomainLegalCookieDomainW
(
gmail_com
,
gmail_com
);
ok
(
ret
,
"IsDomainLegalCookieDomainW failed
\n
"
);
...
...
@@ -754,9 +755,9 @@ static void test_IsDomainLegalCookieDomainW(void)
ok
(
!
ret
,
"IsDomainLegalCookieDomainW succeeded
\n
"
);
ok
(
error
==
ERROR_SXS_KEY_NOT_FOUND
||
/* IE8 on XP */
error
==
ERROR_FILE_NOT_FOUND
||
/* IE8 on Vista */
error
==
ERROR_SUCCESS
||
/* IE8 on W2K3 */
error
==
0xdeadbeef
,
/* up to IE7 */
"got %u expected ERROR_SXS_KEY_NOT_FOUND, ERROR_FILE_NOT_FOUND or "
"0xdeadbeef
\n
"
,
error
);
"unexpected error: %u
\n
"
,
error
);
ret
=
pIsDomainLegalCookieDomainW
(
uk
,
co_uk
);
ok
(
!
ret
,
"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