[PATCH 0/1] MR7716: ntdll/tests: Fix a test failure on Windows wow64.
Fix a failing test on Windows. The original patch introducing the test and related Wine change was concerned about the success with missing PROCESS_CREATE_THREAD access which is still tested. -- https://gitlab.winehq.org/wine/wine/-/merge_requests/7716
From: Paul Gofman <pgofman(a)codeweavers.com> --- dlls/ntdll/tests/thread.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dlls/ntdll/tests/thread.c b/dlls/ntdll/tests/thread.c index f7806e0fe62..436b1bf89e0 100644 --- a/dlls/ntdll/tests/thread.c +++ b/dlls/ntdll/tests/thread.c @@ -232,7 +232,7 @@ static void test_NtCreateUserProcess(void) memset( &create_info, 0, sizeof(create_info) ); create_info.Size = sizeof(create_info); - status = NtCreateUserProcess( &process, &thread, PROCESS_TERMINATE, SYNCHRONIZE, + status = NtCreateUserProcess( &process, &thread, PROCESS_TERMINATE | PROCESS_QUERY_INFORMATION, SYNCHRONIZE, NULL, NULL, 0, THREAD_CREATE_FLAGS_CREATE_SUSPENDED, params, &create_info, &ps_attr ); ok( status == STATUS_SUCCESS, "Got unexpected status %#lx.\n", status ); -- GitLab https://gitlab.winehq.org/wine/wine/-/merge_requests/7716
participants (2)
-
Paul Gofman -
Paul Gofman (@gofman)