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
bd5b865f
Commit
bd5b865f
authored
Oct 17, 2013
by
Qian Hong
Committed by
Alexandre Julliard
Oct 17, 2013
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
user32/tests: Skip desktop tests on NT4.
parent
37a8e0c2
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
9 additions
and
0 deletions
+9
-0
winstation.c
dlls/user32/tests/winstation.c
+9
-0
No files found.
dlls/user32/tests/winstation.c
View file @
bd5b865f
...
...
@@ -542,6 +542,15 @@ todo_wine
SetLastError
(
0xdeadbeef
);
ret
=
SendInput
(
1
,
inputs
,
sizeof
(
INPUT
));
if
(
broken
(
GetLastError
()
==
0xdeadbeef
))
{
SetThreadDesktop
(
old_thread_desk
);
CloseDesktop
(
old_input_desk
);
CloseDesktop
(
input_desk
);
CloseDesktop
(
new_desk
);
win_skip
(
"Skip tests on NT4
\n
"
);
return
;
}
todo_wine
ok
(
GetLastError
()
==
ERROR_ACCESS_DENIED
,
"unexpected last error %08x
\n
"
,
GetLastError
());
ok
(
ret
==
1
||
broken
(
ret
==
0
)
/* Win64 */
,
"unexpected return count %d
\n
"
,
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