28 Feb
2025
28 Feb
'25
4:13 p.m.
Jinoh Kang (@iamahuman) commented about dlls/ntdll/tests/file.c:
/* FileFsFullSizeInformationEx is supported on Windows 10 build 1809 and later */ res = pNtQueryVolumeInformationFile(h, &io, &ffsie, sizeof ffsie, FileFsFullSizeInformationEx); - ok(res == STATUS_INVALID_PARAMETER || res == STATUS_SUCCESS, "cannot get attributes, res %lx\n", res); - - if (res == STATUS_NOT_IMPLEMENTED || res == STATUS_INVALID_PARAMETER) + if (res == STATUS_NOT_IMPLEMENTED || res == STATUS_INVALID_PARAMETER || res == STATUS_INVALID_INFO_CLASS)
Doesn't `STATUS_INVALID_PARAMETER` still belong to the ok() statement? -- https://gitlab.winehq.org/wine/wine/-/merge_requests/7445#note_96227