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
c1fb8fe2
Commit
c1fb8fe2
authored
Feb 07, 2023
by
Michael Stefaniuc
Committed by
Alexandre Julliard
Feb 08, 2023
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
ntdll/tests: Remove some Vista broken broken(<constant>) calls.
One of them still needs a broken() for some Win8 machines.
parent
bf859fb0
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
3 deletions
+3
-3
info.c
dlls/ntdll/tests/info.c
+3
-3
No files found.
dlls/ntdll/tests/info.c
View file @
c1fb8fe2
...
@@ -199,7 +199,7 @@ static void test_query_basic(void)
...
@@ -199,7 +199,7 @@ static void test_query_basic(void)
"info is different
\n
"
);
"info is different
\n
"
);
}
}
#else
#else
ok
(
status
==
STATUS_INVALID_INFO_CLASS
||
broken
(
STATUS_NOT_IMPLEMENTED
),
/* vista
*/
ok
(
status
==
STATUS_INVALID_INFO_CLASS
||
broken
(
status
==
STATUS_SUCCESS
),
/* some Win8
*/
"got %08lx
\n
"
,
status
);
"got %08lx
\n
"
,
status
);
status
=
pRtlGetNativeSystemInformation
(
SystemNativeBasicInformation
,
&
sbi3
,
sizeof
(
sbi3
),
&
ReturnLength
);
status
=
pRtlGetNativeSystemInformation
(
SystemNativeBasicInformation
,
&
sbi3
,
sizeof
(
sbi3
),
&
ReturnLength
);
ok
(
!
status
||
status
==
STATUS_INFO_LENGTH_MISMATCH
||
ok
(
!
status
||
status
==
STATUS_INFO_LENGTH_MISMATCH
||
...
@@ -3219,9 +3219,9 @@ static void test_ThreadEnableAlignmentFaultFixup(void)
...
@@ -3219,9 +3219,9 @@ static void test_ThreadEnableAlignmentFaultFixup(void)
dummy
=
0
;
dummy
=
0
;
status
=
NtQueryInformationThread
(
GetCurrentThread
(),
ThreadEnableAlignmentFaultFixup
,
&
dummy
,
sizeof
(
ULONG
),
NULL
);
status
=
NtQueryInformationThread
(
GetCurrentThread
(),
ThreadEnableAlignmentFaultFixup
,
&
dummy
,
sizeof
(
ULONG
),
NULL
);
ok
(
status
==
STATUS_INVALID_INFO_CLASS
||
broken
(
STATUS_NOT_IMPLEMENTED
)
,
"Expected STATUS_INVALID_INFO_CLASS, got %08lx
\n
"
,
status
);
ok
(
status
==
STATUS_INVALID_INFO_CLASS
,
"Expected STATUS_INVALID_INFO_CLASS, got %08lx
\n
"
,
status
);
status
=
NtQueryInformationThread
(
GetCurrentThread
(),
ThreadEnableAlignmentFaultFixup
,
&
dummy
,
1
,
NULL
);
status
=
NtQueryInformationThread
(
GetCurrentThread
(),
ThreadEnableAlignmentFaultFixup
,
&
dummy
,
1
,
NULL
);
ok
(
status
==
STATUS_INVALID_INFO_CLASS
||
broken
(
STATUS_NOT_IMPLEMENTED
)
,
"Expected STATUS_INVALID_INFO_CLASS, got %08lx
\n
"
,
status
);
ok
(
status
==
STATUS_INVALID_INFO_CLASS
,
"Expected STATUS_INVALID_INFO_CLASS, got %08lx
\n
"
,
status
);
dummy
=
1
;
dummy
=
1
;
status
=
pNtSetInformationThread
(
GetCurrentThread
(),
ThreadEnableAlignmentFaultFixup
,
&
dummy
,
sizeof
(
ULONG
)
);
status
=
pNtSetInformationThread
(
GetCurrentThread
(),
ThreadEnableAlignmentFaultFixup
,
&
dummy
,
sizeof
(
ULONG
)
);
...
...
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