On Tue Mar 11 09:16:38 2025 +0000, Yongjie Yao wrote:
For long path, the length larger than MAX_PATH, CopyFileExW will be success by wine, but on windows 10 with internal version 19045.5487, it will be failed with ERROR_PATH_NOT_FOUND.
So what you do is to add a todo_wine before the ok macro. Because Wine succeeds, so `ok(!ret && GetLastError() == ERROR_PATH_NOT_FOUND, ...)` should fail on Wine. Then after you fix the bug on Wine, you remove the todo_wine.