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
64c6c08e
Commit
64c6c08e
authored
Feb 28, 2013
by
Andrew Talbot
Committed by
Alexandre Julliard
Mar 01, 2013
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
kernel32/tests: Do not assume the signedness of plain char.
parent
e458665a
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
codepage.c
dlls/kernel32/tests/codepage.c
+2
-2
No files found.
dlls/kernel32/tests/codepage.c
View file @
64c6c08e
...
...
@@ -285,7 +285,7 @@ static void test_string_conversion(LPBOOL bUsedDefaultChar)
SetLastError
(
0xdeadbeef
);
ret
=
WideCharToMultiByte
(
1252
,
0
,
&
wc1
,
1
,
&
mbc
,
1
,
NULL
,
bUsedDefaultChar
);
ok
(
ret
==
1
,
"ret is %d
\n
"
,
ret
);
ok
(
mbc
==
-
28
,
"mbc is %d
\n
"
,
mbc
);
ok
(
mbc
==
'\xe4'
,
"mbc is %d
\n
"
,
mbc
);
if
(
bUsedDefaultChar
)
ok
(
*
bUsedDefaultChar
==
FALSE
,
"bUsedDefaultChar is %d
\n
"
,
*
bUsedDefaultChar
);
ok
(
GetLastError
()
==
0xdeadbeef
,
"GetLastError() is %u
\n
"
,
GetLastError
());
...
...
@@ -301,7 +301,7 @@ static void test_string_conversion(LPBOOL bUsedDefaultChar)
SetLastError
(
0xdeadbeef
);
ret
=
WideCharToMultiByte
(
1251
,
0
,
&
wc2
,
1
,
&
mbc
,
1
,
NULL
,
bUsedDefaultChar
);
ok
(
ret
==
1
,
"ret is %d
\n
"
,
ret
);
ok
(
mbc
==
-
16
,
"mbc is %d
\n
"
,
mbc
);
ok
(
mbc
==
'\xf0'
,
"mbc is %d
\n
"
,
mbc
);
if
(
bUsedDefaultChar
)
ok
(
*
bUsedDefaultChar
==
FALSE
,
"bUsedDefaultChar is %d
\n
"
,
*
bUsedDefaultChar
);
ok
(
GetLastError
()
==
0xdeadbeef
||
broken
(
GetLastError
()
==
0
),
/* win95 */
...
...
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