Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-cw
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-cw
Commits
4c9f668e
Commit
4c9f668e
authored
Nov 10, 2006
by
Francois Gouget
Committed by
Alexandre Julliard
Nov 13, 2006
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
kernel32: Fix the 'MAP_FOLDCZONE' ok() test.
parent
3545dc51
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
9 additions
and
2 deletions
+9
-2
locale.c
dlls/kernel32/tests/locale.c
+9
-2
No files found.
dlls/kernel32/tests/locale.c
View file @
4c9f668e
...
...
@@ -1857,8 +1857,15 @@ static void test_FoldStringW(void)
EXPECT_LEN
(
2
);
EXPECT_VALID
;
ok
(
dst
[
0
]
==
expected
||
/* Wine (correctly) uses updated mappings for some Unicode 4.0 chars */
(
ch
>=
0xFA0D
&&
ch
<=
0xFA47
)
||
0xf92c
||
ch
==
0xf979
||
ch
==
0xf995
||
ch
==
0xf9e7
||
ch
==
0xf9f1
,
/* FIXME: But they should be re-checked */
ch
==
0xf92c
||
ch
==
0xf979
||
ch
==
0xf995
||
ch
==
0xf9e7
||
ch
==
0xf9f1
||
(
0xfa0c
<=
ch
&&
ch
<=
0xfa6a
)
||
(
0xfa70
<=
ch
&&
ch
<=
0xfad9
)
||
ch
==
0xfe47
||
ch
==
0xfe48
||
ch
==
0xfe68
||
(
0xfe70
<=
ch
&&
ch
<=
0xfe7f
)
||
ch
==
0xff3c
||
ch
==
0xff5f
||
ch
==
0xff60
||
ch
==
0xff9e
||
ch
==
0xff9f
,
"MAP_FOLDCZONE: ch %d 0x%04x Expected 0x%04x got 0x%04x
\n
"
,
ch
,
ch
,
expected
,
dst
[
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