Zhiyi Zhang (@zhiyi) commented about dlls/kernel32/tests/file.c:
ok(GetLastError() == ERROR_SUCCESS || broken(GetLastError() == ERROR_INVALID_PARAMETER) /* some win8 machines */, "Unexpected error %lu.\n", GetLastError());
+ // test long file path, the length of the long_dest is larger than MAX_PATH. + wcscpy(long_dest, temp_path); + wcscat(long_dest, long_name); + SetLastError(0xdeadbeef); + ret = CopyFileExW(source, long_dest, NULL, NULL, NULL, 0); + ok(!ret && GetLastError() == ERROR_PATH_NOT_FOUND, "Expected CopyFileExW failed with ERROR_PATH_NOT_FOUND, but got %ld, copy %s -> %s\n", GetLastError(), wine_dbgstr_w(source), wine_dbgstr_w(long_dest));
I don't see todo_wine in this patch. -- https://gitlab.winehq.org/wine/wine/-/merge_requests/7540#note_97365