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
a1131786
Commit
a1131786
authored
Oct 06, 2008
by
Paul Vriens
Committed by
Alexandre Julliard
Oct 06, 2008
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
kernel32/tests: Add some skips to fix failures on WinMe.
parent
0d147057
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
26 additions
and
1 deletion
+26
-1
locale.c
dlls/kernel32/tests/locale.c
+26
-1
No files found.
dlls/kernel32/tests/locale.c
View file @
a1131786
...
...
@@ -2042,12 +2042,22 @@ static BOOL CALLBACK langgrp_procA(LGRPID lgrpid, LPSTR lpszNum, LPSTR lpszName,
static
void
test_EnumSystemLanguageGroupsA
(
void
)
{
BOOL
ret
;
if
(
!
pEnumSystemLanguageGroupsA
||
!
pIsValidLanguageGroup
)
{
win_skip
(
"EnumSystemLanguageGroupsA and/or IsValidLanguageGroup are not available
\n
"
);
return
;
}
/* No enumeration proc */
SetLastError
(
0
);
pEnumSystemLanguageGroupsA
(
0
,
LGRPID_INSTALLED
,
0
);
if
(
!
ret
&&
GetLastError
()
==
ERROR_CALL_NOT_IMPLEMENTED
)
{
win_skip
(
"EnumSystemLanguageGroupsA is not implemented
\n
"
);
return
;
}
EXPECT_INVALID
;
/* Invalid flags */
...
...
@@ -2083,12 +2093,22 @@ static BOOL CALLBACK lgrplocale_procA(LGRPID lgrpid, LCID lcid, LPSTR lpszNum,
static
void
test_EnumLanguageGroupLocalesA
(
void
)
{
BOOL
ret
;
if
(
!
pEnumLanguageGroupLocalesA
||
!
pIsValidLanguageGroup
)
{
win_skip
(
"EnumLanguageGroupLocalesA and/or IsValidLanguageGroup are not available
\n
"
);
return
;
}
/* No enumeration proc */
SetLastError
(
0
);
pEnumLanguageGroupLocalesA
(
0
,
LGRPID_WESTERN_EUROPE
,
0
,
0
);
ret
=
pEnumLanguageGroupLocalesA
(
0
,
LGRPID_WESTERN_EUROPE
,
0
,
0
);
if
(
!
ret
&&
GetLastError
()
==
ERROR_CALL_NOT_IMPLEMENTED
)
{
win_skip
(
"EnumLanguageGroupLocalesA is not implemented
\n
"
);
return
;
}
EXPECT_INVALID
;
/* lgrpid too small */
...
...
@@ -2159,6 +2179,11 @@ static void test_EnumUILanguageA(void)
SetLastError
(
ERROR_SUCCESS
);
ret
=
pEnumUILanguagesA
(
luilocale_proc1A
,
0
,
0
);
if
(
!
ret
&&
GetLastError
()
==
ERROR_CALL_NOT_IMPLEMENTED
)
{
win_skip
(
"EnumUILanguagesA is not implemented
\n
"
);
return
;
}
EXPECT_TRUE
;
EXPECT_VALID
;
enumCount
=
0
;
...
...
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