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?