From: Bernhard Übelacker <bernhardu(a)mailbox.org> Followup to: 029eabf4c2 --- dlls/ntdll/tests/thread.c | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/dlls/ntdll/tests/thread.c b/dlls/ntdll/tests/thread.c index 30b24007c7a..102ed854165 100644 --- a/dlls/ntdll/tests/thread.c +++ b/dlls/ntdll/tests/thread.c @@ -267,7 +267,9 @@ static void test_thread_bypass_process_freeze(void) status = pNtCreateThreadEx( &thread, THREAD_ALL_ACCESS, NULL, GetCurrentProcess(), test_thread_bypass_process_freeze_proc, NULL, THREAD_CREATE_FLAGS_BYPASS_PROCESS_FREEZE, 0, 0, 0, NULL ); - ok( status == STATUS_SUCCESS, "Got unexpected status %#lx.\n", status ); + ok( status == STATUS_SUCCESS || + broken(status == STATUS_INVALID_PARAMETER_7) /* <= Win10-1809 */, + "Got unexpected status %#lx.\n", status ); WaitForSingleObject( thread, INFINITE ); CloseHandle( thread ); -- GitLab https://gitlab.winehq.org/wine/wine/-/merge_requests/8772