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
7516cb05
Commit
7516cb05
authored
Mar 18, 2022
by
Eric Pouech
Committed by
Alexandre Julliard
Mar 18, 2022
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
ntdll/tests: Enable compilation with long types in change.c.
Signed-off-by:
Eric Pouech
<
eric.pouech@gmail.com
>
Signed-off-by:
Alexandre Julliard
<
julliard@winehq.org
>
parent
44d604f5
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
5 deletions
+6
-5
change.c
dlls/ntdll/tests/change.c
+6
-5
No files found.
dlls/ntdll/tests/change.c
View file @
7516cb05
...
...
@@ -17,6 +17,7 @@
* License along with this library; if not, write to the Free Software
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
*/
#undef WINE_NO_LONG_TYPES
/* temporary for migration */
#include <ntstatus.h>
#define WIN32_NO_STATUS
...
...
@@ -301,9 +302,9 @@ static void test_ntncdf_async(void)
CloseHandle
(
hdir
);
ok
(
U
(
iosb
).
Status
==
STATUS_CANCELLED
,
"status wrong %x
\n
"
,
U
(
iosb
).
Status
);
ok
(
U
(
iosb2
).
Status
==
STATUS_CANCELLED
,
"status wrong %x
\n
"
,
U
(
iosb2
).
Status
);
ok
(
U
(
iosb3
).
Status
==
STATUS_SUCCESS
,
"status wrong %x
\n
"
,
U
(
iosb3
).
Status
);
ok
(
U
(
iosb
).
Status
==
STATUS_CANCELLED
,
"status wrong %
l
x
\n
"
,
U
(
iosb
).
Status
);
ok
(
U
(
iosb2
).
Status
==
STATUS_CANCELLED
,
"status wrong %
l
x
\n
"
,
U
(
iosb2
).
Status
);
ok
(
U
(
iosb3
).
Status
==
STATUS_SUCCESS
,
"status wrong %
l
x
\n
"
,
U
(
iosb3
).
Status
);
ok
(
iosb
.
Information
==
0
,
"info wrong
\n
"
);
ok
(
iosb2
.
Information
==
0
,
"info wrong
\n
"
);
...
...
@@ -312,8 +313,8 @@ static void test_ntncdf_async(void)
U
(
iosb3
).
Status
=
0x111111
;
iosb3
.
Information
=
0x222222
;
r
=
pNtCancelIoFile
(
hdir
,
&
iosb3
);
ok
(
r
==
STATUS_INVALID_HANDLE
,
"cancel failed %x
\n
"
,
r
);
ok
(
U
(
iosb3
).
Status
==
0x111111
,
"status wrong %x
\n
"
,
U
(
iosb3
).
Status
);
ok
(
r
==
STATUS_INVALID_HANDLE
,
"cancel failed %
l
x
\n
"
,
r
);
ok
(
U
(
iosb3
).
Status
==
0x111111
,
"status wrong %
l
x
\n
"
,
U
(
iosb3
).
Status
);
ok
(
iosb3
.
Information
==
0x222222
,
"info wrong
\n
"
);
r
=
RemoveDirectoryW
(
path
);
...
...
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