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
cc57b863
Commit
cc57b863
authored
Oct 06, 2008
by
Paul Vriens
Committed by
Alexandre Julliard
Oct 06, 2008
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
kernel32/tests: Fix the remaining errors on win95.
parent
1d21d24a
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
20 additions
and
15 deletions
+20
-15
codepage.c
dlls/kernel32/tests/codepage.c
+20
-15
No files found.
dlls/kernel32/tests/codepage.c
View file @
cc57b863
...
...
@@ -236,21 +236,26 @@ static void test_string_conversion(LPBOOL bUsedDefaultChar)
if
(
bUsedDefaultChar
)
ok
(
*
bUsedDefaultChar
==
TRUE
,
"bUsedDefaultChar is %d
\n
"
,
*
bUsedDefaultChar
);
ok
(
GetLastError
()
==
0xdeadbeef
,
"GetLastError() is %u
\n
"
,
GetLastError
());
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
);
if
(
bUsedDefaultChar
)
ok
(
*
bUsedDefaultChar
==
FALSE
,
"bUsedDefaultChar is %d
\n
"
,
*
bUsedDefaultChar
);
ok
(
GetLastError
()
==
0xdeadbeef
||
broken
(
GetLastError
()
==
0
),
/* win95 */
"GetLastError() is %u
\n
"
,
GetLastError
());
SetLastError
(
0xdeadbeef
);
ret
=
WideCharToMultiByte
(
1251
,
0
,
&
wc1
,
1
,
&
mbc
,
1
,
NULL
,
bUsedDefaultChar
);
ok
(
ret
==
1
,
"ret is %d
\n
"
,
ret
);
ok
(
mbc
==
97
,
"mbc is %d
\n
"
,
mbc
);
if
(
bUsedDefaultChar
)
ok
(
*
bUsedDefaultChar
==
FALSE
,
"bUsedDefaultChar is %d
\n
"
,
*
bUsedDefaultChar
);
ok
(
GetLastError
()
==
0xdeadbeef
,
"GetLastError() is %u
\n
"
,
GetLastError
());
if
(
IsValidCodePage
(
1251
))
{
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
);
if
(
bUsedDefaultChar
)
ok
(
*
bUsedDefaultChar
==
FALSE
,
"bUsedDefaultChar is %d
\n
"
,
*
bUsedDefaultChar
);
ok
(
GetLastError
()
==
0xdeadbeef
||
broken
(
GetLastError
()
==
0
),
/* win95 */
"GetLastError() is %u
\n
"
,
GetLastError
());
SetLastError
(
0xdeadbeef
);
ret
=
WideCharToMultiByte
(
1251
,
0
,
&
wc1
,
1
,
&
mbc
,
1
,
NULL
,
bUsedDefaultChar
);
ok
(
ret
==
1
,
"ret is %d
\n
"
,
ret
);
ok
(
mbc
==
97
,
"mbc is %d
\n
"
,
mbc
);
if
(
bUsedDefaultChar
)
ok
(
*
bUsedDefaultChar
==
FALSE
,
"bUsedDefaultChar is %d
\n
"
,
*
bUsedDefaultChar
);
ok
(
GetLastError
()
==
0xdeadbeef
,
"GetLastError() is %u
\n
"
,
GetLastError
());
}
else
skip
(
"Codepage 1251 not available
\n
"
);
/* This call triggers the last Win32 error */
SetLastError
(
0xdeadbeef
);
...
...
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