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
cf0f7fcf
Commit
cf0f7fcf
authored
Oct 11, 2016
by
Sebastian Lackner
Committed by
Alexandre Julliard
Oct 11, 2016
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
user32/tests: Fix test failures on 64-bit testbot VMs.
Signed-off-by:
Sebastian Lackner
<
sebastian@fds-team.de
>
Signed-off-by:
Alexandre Julliard
<
julliard@winehq.org
>
parent
069f20d1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
0 deletions
+3
-0
clipboard.c
dlls/user32/tests/clipboard.c
+3
-0
No files found.
dlls/user32/tests/clipboard.c
View file @
cf0f7fcf
...
...
@@ -1737,7 +1737,10 @@ static void test_handles( HWND hwnd )
h
=
SetClipboardData
(
0xdeadbeef
,
hfixed
);
ok
(
h
==
hfixed
,
"got %p
\n
"
,
h
);
ok
(
is_fixed
(
h
),
"expected fixed mem %p
\n
"
,
h
);
#ifndef _WIN64
/* testing if hfixed2 is freed triggers an exception on Win64 */
ok
(
is_freed
(
hfixed2
)
||
broken
(
!
is_freed
(
hfixed2
))
/* < Vista */
,
"expected freed mem %p
\n
"
,
hfixed2
);
#endif
r
=
CloseClipboard
();
ok
(
r
,
"gle %d
\n
"
,
GetLastError
()
);
...
...
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