10 Jan
2013
10 Jan
'13
10:03 p.m.
Patrick Rudolph <siro(a)das-labor.org> wrote:
try2: check the os version in case of PROGRESS_STOP
+ ret = GetFileAttributesEx(dest_name, GetFileExInfoStandard, (void*)&fileInfo); + + /* Windows Vista and newer delete the file, while prior versions don't */ + ok((!ret && info.dwMajorVersion > 5) || (ret && info.dwMajorVersion <= 5), + "GetFileAttributesEx return-value wrong, got %u and MajorVersion is %u\n", ret, info.dwMajorVersion);
Then you should mark old behaviour as broken() and don't check Windows version at all. -- Dmitry.