On Tue Mar 11 09:20:31 2025 +0000, Zhiyi Zhang wrote:
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.
Ok, I see, thank you.