kernel32/tests : try2 added tests for copyfileex

Dmitry Timoshkov dmitry at baikal.ru
Thu Jan 10 22:03:17 CST 2013


Patrick Rudolph <siro at 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.



More information about the wine-devel mailing list