22 Nov
2024
22 Nov
'24
4:18 p.m.
Jinoh Kang (@iamahuman) commented about dlls/kernel32/tests/file.c:
FindClose(hFind); } } - ret = DeleteFileA(source); - ok(ret, "DeleteFileA: error %ld\n", GetLastError()); ret = DeleteFileA(dest); ok(!ret, "DeleteFileA: error %ld\n", GetLastError()); + + /* test renaming file to hardlink of itself and different case */
At first glance, this sounded like "test renaming file to hardlink of itself in same case as well as different case" This sounds clear to others reading the code: ```suggestion:-0+0 /* test renaming file to hardlink of itself with different case */ ``` -- https://gitlab.winehq.org/wine/wine/-/merge_requests/6855#note_88539