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
509bdae8
Commit
509bdae8
authored
Jul 18, 2014
by
Nikolay Sivov
Committed by
Alexandre Julliard
Jul 18, 2014
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
kernel32/tests: Skip working tests properly.
parent
6944803c
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
4 deletions
+4
-4
locale.c
dlls/kernel32/tests/locale.c
+4
-4
No files found.
dlls/kernel32/tests/locale.c
View file @
509bdae8
...
@@ -3128,7 +3128,7 @@ static void test_EnumDateFormatsA(void)
...
@@ -3128,7 +3128,7 @@ static void test_EnumDateFormatsA(void)
ret
=
EnumDateFormatsA
(
enum_datetime_procA
,
lcid
,
DATE_YEARMONTH
);
ret
=
EnumDateFormatsA
(
enum_datetime_procA
,
lcid
,
DATE_YEARMONTH
);
if
(
!
ret
&&
(
GetLastError
()
==
ERROR_INVALID_FLAGS
))
if
(
!
ret
&&
(
GetLastError
()
==
ERROR_INVALID_FLAGS
))
{
{
skip
(
"DATE_YEARMONTH is only present on W2K and later
\n
"
);
win_
skip
(
"DATE_YEARMONTH is only present on W2K and later
\n
"
);
return
;
return
;
}
}
ok
(
ret
,
"EnumDateFormatsA(DATE_YEARMONTH) error %d
\n
"
,
GetLastError
());
ok
(
ret
,
"EnumDateFormatsA(DATE_YEARMONTH) error %d
\n
"
,
GetLastError
());
...
@@ -3183,7 +3183,7 @@ static void test_GetCPInfo(void)
...
@@ -3183,7 +3183,7 @@ static void test_GetCPInfo(void)
ret
=
GetCPInfo
(
CP_UTF7
,
&
cpinfo
);
ret
=
GetCPInfo
(
CP_UTF7
,
&
cpinfo
);
if
(
!
ret
&&
GetLastError
()
==
ERROR_INVALID_PARAMETER
)
if
(
!
ret
&&
GetLastError
()
==
ERROR_INVALID_PARAMETER
)
{
{
skip
(
"Codepage CP_UTF7 is not installed/available
\n
"
);
win_
skip
(
"Codepage CP_UTF7 is not installed/available
\n
"
);
}
}
else
else
{
{
...
@@ -3199,7 +3199,7 @@ static void test_GetCPInfo(void)
...
@@ -3199,7 +3199,7 @@ static void test_GetCPInfo(void)
ret
=
GetCPInfo
(
CP_UTF8
,
&
cpinfo
);
ret
=
GetCPInfo
(
CP_UTF8
,
&
cpinfo
);
if
(
!
ret
&&
GetLastError
()
==
ERROR_INVALID_PARAMETER
)
if
(
!
ret
&&
GetLastError
()
==
ERROR_INVALID_PARAMETER
)
{
{
skip
(
"Codepage CP_UTF8 is not installed/available
\n
"
);
win_
skip
(
"Codepage CP_UTF8 is not installed/available
\n
"
);
}
}
else
else
{
{
...
@@ -3982,7 +3982,7 @@ static void test_EnumSystemGeoID(void)
...
@@ -3982,7 +3982,7 @@ static void test_EnumSystemGeoID(void)
geoidenum_count
=
0
;
geoidenum_count
=
0
;
ret
=
pEnumSystemGeoID
(
GEOCLASS_REGION
,
39070
,
test_geoid_enumproc2
);
ret
=
pEnumSystemGeoID
(
GEOCLASS_REGION
,
39070
,
test_geoid_enumproc2
);
if
(
ret
==
0
)
if
(
ret
==
0
)
skip
(
"GEOCLASS_REGION is not supported in EnumSystemGeoID.
\n
"
);
win_
skip
(
"GEOCLASS_REGION is not supported in EnumSystemGeoID.
\n
"
);
else
else
{
{
ok
(
ret
&&
geoidenum_count
>
0
,
"got %d, count %d
\n
"
,
ret
,
geoidenum_count
);
ok
(
ret
&&
geoidenum_count
>
0
,
"got %d, count %d
\n
"
,
ret
,
geoidenum_count
);
...
...
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