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
969e3626
Commit
969e3626
authored
Jun 07, 2023
by
Victor Chiletto
Committed by
Alexandre Julliard
Jul 12, 2023
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
msvcr120/tests: Check ___lc_locale_name_func with neutral Chinese locales.
parent
fbbe8e26
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
8 additions
and
0 deletions
+8
-0
msvcr120.c
dlls/msvcr120/tests/msvcr120.c
+8
-0
No files found.
dlls/msvcr120/tests/msvcr120.c
View file @
969e3626
...
...
@@ -596,6 +596,14 @@ static void test____lc_locale_name_func(void)
}
}
p_setlocale
(
LC_ALL
,
"zh-Hans"
);
lc_names
=
p____lc_locale_name_func
();
todo_wine
ok
(
!
lstrcmpW
(
lc_names
[
1
],
L"zh-Hans"
),
"lc_names[1] expected zh-Hans got %s
\n
"
,
wine_dbgstr_w
(
lc_names
[
1
]));
p_setlocale
(
LC_ALL
,
"zh-Hant"
);
lc_names
=
p____lc_locale_name_func
();
todo_wine
ok
(
!
lstrcmpW
(
lc_names
[
1
],
L"zh-Hant"
),
"lc_names[1] expected zh-Hant got %s
\n
"
,
wine_dbgstr_w
(
lc_names
[
1
]));
p_setlocale
(
LC_ALL
,
"C"
);
lc_names
=
p____lc_locale_name_func
();
ok
(
!
lc_names
[
1
],
"___lc_locale_name_func()[1] = %s
\n
"
,
wine_dbgstr_w
(
lc_names
[
1
]));
...
...
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