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
df94a9a4
Commit
df94a9a4
authored
Dec 07, 2019
by
Mathew Hodson
Committed by
Alexandre Julliard
Dec 09, 2019
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
kernel32/tests: Add broken result for Windows XP and 2003.
Signed-off-by:
Mathew Hodson
<
mathew.hodson@gmail.com
>
Signed-off-by:
Alexandre Julliard
<
julliard@winehq.org
>
parent
356513ef
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
3 deletions
+5
-3
locale.c
dlls/kernel32/tests/locale.c
+5
-3
No files found.
dlls/kernel32/tests/locale.c
View file @
df94a9a4
...
...
@@ -3439,7 +3439,7 @@ static void test_FoldStringW(void)
};
static
const
WCHAR
foldczone_broken_dst
[]
=
{
'W'
,
'i'
,
'n'
,
'e'
,
0x0348
,
0x0551
,
0x1323
,
0x280d
,
'W'
,
'i'
,
'n'
,
'e'
,
0x
3cb
,
0x1f0
,
0xa0
,
0x
aa
,
0
'W'
,
'i'
,
'n'
,
'e'
,
0x0348
,
0x0551
,
0x1323
,
0x280d
,
'W'
,
'i'
,
'n'
,
'e'
,
0x
03c5
,
0x0308
,
'j'
,
0x030c
,
0x00a0
,
0x00
aa
,
0
};
static
const
WCHAR
ligatures_src
[]
=
{
...
...
@@ -3582,9 +3582,11 @@ static void test_FoldStringW(void)
/* MAP_FOLDCZONE */
SetLastError
(
0
);
ret
=
pFoldStringW
(
MAP_FOLDCZONE
,
foldczone_src
,
-
1
,
dst
,
256
);
ok
(
ret
==
ARRAY_SIZE
(
foldczone_dst
),
"Got %d, error %d
\n
"
,
ret
,
GetLastError
());
ok
(
ret
==
ARRAY_SIZE
(
foldczone_dst
)
||
broken
(
ret
==
ARRAY_SIZE
(
foldczone_broken_dst
)),
/* winxp, win2003 */
"Got %d, error %d.
\n
"
,
ret
,
GetLastError
());
ok
(
!
memcmp
(
dst
,
foldczone_dst
,
sizeof
(
foldczone_dst
))
||
broken
(
!
memcmp
(
dst
,
foldczone_broken_dst
,
sizeof
(
foldczone_broken_dst
))),
||
broken
(
!
memcmp
(
dst
,
foldczone_broken_dst
,
sizeof
(
foldczone_broken_dst
))),
/* winxp, win2003 */
"Got unexpected string %s.
\n
"
,
wine_dbgstr_w
(
dst
));
/* MAP_EXPAND_LIGATURES */
...
...
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