https://bugs.winehq.org/show_bug.cgi?id=49484
Bug ID: 49484 Summary: test_query_process_image_info() test is broken on a not PE build Product: Wine Version: 5.11 Hardware: x86 OS: Linux Status: NEW Keywords: regression Severity: normal Priority: P2 Component: -unknown Assignee: wine-bugs@winehq.org Reporter: dmitry@baikal.ru Distribution: ---
Steps to reproduce:
cd wine/dlls/ntdll/tests make info.ok
info.c:1843: Test failed: got c0000019 info.c:1846: Test failed: wrong major version cccc/4 info.c:1848: Test failed: wrong minor version cccc/0
In fact it never worked from the point when it was added:
commit 54a7e592e44622ecd61160498fb5148a46b2e8db Author: Alexandre Julliard julliard@winehq.org Date: Tue May 26 13:23:21 2020 +0200
ntdll: Implement ProcessImageInformation class in NtQueryInformationProcess().
It looks like in a not PE build process->views on the server side is always empty, and as a result mapping.c,find_mapped_view() returns NOT_MAPPED_VIEW. There's no a single DLL in the process->views, and that's a real regression, probably caused by the movement to PE/ntdll unixlib introduction.