19 Mar
2024
19 Mar
'24
9:21 a.m.
Jinoh Kang (@iamahuman) commented about dlls/ntdll/tests/info.c:
} }
+static void test_query_process_qlimits(void) +{ + QUOTA_LIMITS qlimits; + NTSTATUS status; + HANDLE process; + ULONG ret_len; + + status = NtQueryInformationProcess(NULL, ProcessQuotaLimits, NULL, sizeof(qlimits), NULL); + ok(status == STATUS_ACCESS_VIOLATION || status == STATUS_INVALID_HANDLE,
One of this is not latest Windows behavior and should be marked broken() I think. -- https://gitlab.winehq.org/wine/wine/-/merge_requests/5269#note_65311