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
ff7746a0
Commit
ff7746a0
authored
Jul 22, 2013
by
Qian Hong
Committed by
Alexandre Julliard
Jul 22, 2013
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
msvcrt/tests: Added setlocale test for Chinese_China.936.
parent
61bf3d45
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
12 additions
and
0 deletions
+12
-0
locale.c
dlls/msvcrt/tests/locale.c
+12
-0
No files found.
dlls/msvcrt/tests/locale.c
View file @
ff7746a0
...
...
@@ -146,6 +146,18 @@ static void test_setlocale(void)
ok
(
!
strcmp
(
ret
,
"Chinese (Traditional)_Taiwan.950"
)
||
broken
(
!
strcmp
(
ret
,
"Chinese_Taiwan.950"
)),
"ret = %s
\n
"
,
ret
);
ret
=
setlocale
(
LC_ALL
,
"Chinese_China.936"
);
todo_wine
ok
(
ret
!=
NULL
||
broken
(
ret
==
NULL
),
"ret == NULL
\n
"
);
if
(
ret
)
{
todo_wine
ok
(
!
strcmp
(
ret
,
"Chinese (Simplified)_People's Republic of China.936"
)
||
!
strcmp
(
ret
,
"Chinese (Simplified)_China.936"
)
||
broken
(
!
strcmp
(
ret
,
"Chinese_People's Republic of China.936"
)),
"ret = %s
\n
"
,
ret
);
trace
(
"ret is %s
\n
"
,
ret
);
}
ret
=
setlocale
(
LC_ALL
,
"csy"
);
ok
(
ret
!=
NULL
||
broken
(
ret
==
NULL
),
"ret == NULL
\n
"
);
if
(
ret
)
...
...
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