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
35bea756
Commit
35bea756
authored
Nov 15, 2023
by
Eric Pouech
Committed by
Alexandre Julliard
Feb 12, 2024
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
msvcrt/tests: Extend test for invalid std handle on msvcrt init.
Signed-off-by:
Eric Pouech
<
epouech@codeweavers.com
>
parent
4121a29b
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
0 deletions
+3
-0
file.c
dlls/msvcrt/tests/file.c
+3
-0
No files found.
dlls/msvcrt/tests/file.c
View file @
35bea756
...
...
@@ -1896,6 +1896,9 @@ static void test_invalid_stdin_child( void )
handle
=
(
HANDLE
)
_get_osfhandle
(
STDIN_FILENO
);
ok
(
handle
==
(
HANDLE
)
-
2
,
"handle = %p
\n
"
,
handle
);
ok
(
errno
==
0xdeadbeef
,
"errno = %d
\n
"
,
errno
);
handle
=
GetStdHandle
(
STD_INPUT_HANDLE
);
todo_wine
ok
((
LONG_PTR
)
handle
>
0
,
"Expecting passed handle to be untouched
\n
"
);
info
=
&
__pioinfo
[
STDIN_FILENO
/
MSVCRT_FD_BLOCK_SIZE
][
STDIN_FILENO
%
MSVCRT_FD_BLOCK_SIZE
];
ok
(
info
->
handle
==
(
HANDLE
)
-
2
,
"info->handle = %p
\n
"
,
info
->
handle
);
...
...
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