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
8a6d1df8
Commit
8a6d1df8
authored
Mar 21, 2010
by
André Hentschel
Committed by
Alexandre Julliard
Mar 22, 2010
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
ntdll: Fix error strict mode tests on vista+.
parent
bfe47fee
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
3 deletions
+3
-3
error.c
dlls/ntdll/tests/error.c
+3
-3
No files found.
dlls/ntdll/tests/error.c
View file @
8a6d1df8
...
...
@@ -189,7 +189,7 @@ static void run_error_tests(void)
cmp
(
STATUS_HANDLE_NOT_CLOSABLE
,
ERROR_INVALID_HANDLE
);
cmp
(
STATUS_NOT_COMMITTED
,
ERROR_INVALID_ADDRESS
);
cmp
(
STATUS_PARTIAL_COPY
,
ERROR_PARTIAL_COPY
);
cmp3
(
STATUS_LPC_REPLY_LOST
,
ERROR_
INTERNAL_ERROR
,
ERROR_CONNECTION_ABORTED
);
cmp3
(
STATUS_LPC_REPLY_LOST
,
ERROR_
CONNECTION_ABORTED
,
ERROR_INTERNAL_ERROR
);
cmp
(
STATUS_INVALID_PARAMETER
,
ERROR_INVALID_PARAMETER
);
cmp
(
STATUS_INVALID_PARAMETER_1
,
ERROR_INVALID_PARAMETER
);
cmp
(
STATUS_INVALID_PARAMETER_2
,
ERROR_INVALID_PARAMETER
);
...
...
@@ -738,8 +738,8 @@ static void run_error_tests(void)
cmp
(
STATUS_LOGIN_WKSTA_RESTRICTION
,
ERROR_LOGIN_WKSTA_RESTRICTION
);
cmp
(
STATUS_LICENSE_QUOTA_EXCEEDED
,
ERROR_LICENSE_QUOTA_EXCEEDED
);
cmp
(
STATUS_RESOURCE_NOT_OWNED
,
ERROR_NOT_OWNER
);
cmp3
(
STATUS_DUPLICATE_OBJECTID
,
STATUS_DUPLICATE_OBJECTID
,
ERROR_OBJECT_ALREADY_EXISTS
);
cmp3
(
STATUS_OBJECTID_EXISTS
,
STATUS_OBJECTID_EXISTS
,
ERROR_OBJECT_ALREADY
_EXISTS
);
cmp3
(
STATUS_DUPLICATE_OBJECTID
,
ERROR_OBJECT_ALREADY_EXISTS
,
STATUS_DUPLICATE_OBJECTID
);
cmp3
(
STATUS_OBJECTID_EXISTS
,
ERROR_OBJECT_ALREADY_EXISTS
,
STATUS_OBJECTID
_EXISTS
);
cmp2
(
STATUS_OBJECTID_NOT_FOUND
,
ERROR_FILE_NOT_FOUND
);
cmp2
(
STATUS_MFT_TOO_FRAGMENTED
,
ERROR_DISK_TOO_FRAGMENTED
);
cmp
(
SEC_E_INSUFFICIENT_MEMORY
,
ERROR_NO_SYSTEM_RESOURCES
);
...
...
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