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
ac07d2eb
Commit
ac07d2eb
authored
Mar 08, 2009
by
Paul Vriens
Committed by
Alexandre Julliard
Mar 09, 2009
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
wininet/tests: Skip some tests on IE5.
parent
1db4ecf8
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
8 additions
and
3 deletions
+8
-3
internet.c
dlls/wininet/tests/internet.c
+8
-3
No files found.
dlls/wininet/tests/internet.c
View file @
ac07d2eb
...
...
@@ -27,6 +27,8 @@
#include "wine/test.h"
static
BOOL
(
WINAPI
*
pCreateUrlCacheContainerA
)(
DWORD
,
DWORD
,
DWORD
,
DWORD
,
DWORD
,
DWORD
,
DWORD
,
DWORD
);
static
BOOL
(
WINAPI
*
pInternetTimeFromSystemTimeA
)(
CONST
SYSTEMTIME
*
,
DWORD
,
LPSTR
,
DWORD
);
static
BOOL
(
WINAPI
*
pInternetTimeFromSystemTimeW
)(
CONST
SYSTEMTIME
*
,
DWORD
,
LPWSTR
,
DWORD
);
static
BOOL
(
WINAPI
*
pInternetTimeToSystemTimeA
)(
LPCSTR
,
SYSTEMTIME
*
,
DWORD
);
...
...
@@ -770,6 +772,7 @@ START_TEST(internet)
{
HMODULE
hdll
;
hdll
=
GetModuleHandleA
(
"wininet.dll"
);
pCreateUrlCacheContainerA
=
(
void
*
)
GetProcAddress
(
hdll
,
"CreateUrlCacheContainerA"
);
pInternetTimeFromSystemTimeA
=
(
void
*
)
GetProcAddress
(
hdll
,
"InternetTimeFromSystemTimeA"
);
pInternetTimeFromSystemTimeW
=
(
void
*
)
GetProcAddress
(
hdll
,
"InternetTimeFromSystemTimeW"
);
pInternetTimeToSystemTimeA
=
(
void
*
)
GetProcAddress
(
hdll
,
"InternetTimeToSystemTimeA"
);
...
...
@@ -784,7 +787,7 @@ START_TEST(internet)
test_null
();
if
(
!
pInternetTimeFromSystemTimeA
)
skip
(
"skipping the InternetTime tests
\n
"
);
win_
skip
(
"skipping the InternetTime tests
\n
"
);
else
{
InternetTimeFromSystemTimeA_test
();
...
...
@@ -792,8 +795,10 @@ START_TEST(internet)
InternetTimeToSystemTimeA_test
();
InternetTimeToSystemTimeW_test
();
}
if
(
!
pIsDomainLegalCookieDomainW
)
skip
(
"skipping IsDomainLegalCookieDomainW tests
\n
"
);
if
(
pIsDomainLegalCookieDomainW
&&
(
void
*
)
pIsDomainLegalCookieDomainW
==
(
void
*
)
pCreateUrlCacheContainerA
)
win_skip
(
"IsDomainLegalCookieDomainW is not available on systems with IE5
\n
"
);
else
if
(
!
pIsDomainLegalCookieDomainW
)
win_skip
(
"IsDomainLegalCookieDomainW (or ordinal 117) is not available
\n
"
);
else
test_IsDomainLegalCookieDomainW
();
}
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