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
b0f7dcdf
Commit
b0f7dcdf
authored
Mar 12, 2008
by
Paul Vriens
Committed by
Alexandre Julliard
Mar 12, 2008
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
kernel32/tests: Skip some tests on win95.
parent
c885d053
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
0 deletions
+6
-0
codepage.c
dlls/kernel32/tests/codepage.c
+6
-0
No files found.
dlls/kernel32/tests/codepage.c
View file @
b0f7dcdf
...
@@ -152,7 +152,13 @@ static void test_overlapped_buffers(void)
...
@@ -152,7 +152,13 @@ static void test_overlapped_buffers(void)
char
buf
[
256
];
char
buf
[
256
];
int
ret
;
int
ret
;
SetLastError
(
0xdeadbeef
);
lstrcpyW
((
WCHAR
*
)(
buf
+
1
),
strW
);
lstrcpyW
((
WCHAR
*
)(
buf
+
1
),
strW
);
if
(
GetLastError
()
==
ERROR_CALL_NOT_IMPLEMENTED
)
{
skip
(
"lstrcypW is not implemented
\n
"
);
return
;
}
ret
=
WideCharToMultiByte
(
CP_ACP
,
0
,
(
WCHAR
*
)(
buf
+
1
),
-
1
,
buf
,
sizeof
(
buf
),
NULL
,
NULL
);
ret
=
WideCharToMultiByte
(
CP_ACP
,
0
,
(
WCHAR
*
)(
buf
+
1
),
-
1
,
buf
,
sizeof
(
buf
),
NULL
,
NULL
);
ok
(
ret
==
sizeof
(
strA
),
"unexpected ret %d
\n
"
,
ret
);
ok
(
ret
==
sizeof
(
strA
),
"unexpected ret %d
\n
"
,
ret
);
ok
(
!
memcmp
(
buf
,
strA
,
sizeof
(
strA
)),
"conversion failed: %s
\n
"
,
buf
);
ok
(
!
memcmp
(
buf
,
strA
,
sizeof
(
strA
)),
"conversion failed: %s
\n
"
,
buf
);
...
...
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