msvcp140/tests: Add a broken last error result in test_Copy_file().
Wine-Bug: https://bugs.winehq.org/show_bug.cgi?id=52857 Signed-off-by: Paul Gofman <pgofman@codeweavers.com> Signed-off-by: Piotr Caban <piotr@codeweavers.com> Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
parent
c68bd28981
commit
ae48b2c9ee
|
@ -1614,12 +1614,14 @@ static void test_Copy_file(void)
|
|||
SetLastError(0xdeadbeef);
|
||||
ret = p_Copy_file(L"wine_test_dir/f1", L"wine_test_dir/f3");
|
||||
ok(ret == ERROR_SUCCESS, "Got unexpected ret %lu.\n", ret);
|
||||
ok(GetLastError() == ret, "Got unexpected err %lu.\n", GetLastError());
|
||||
ok(GetLastError() == ret || broken(GetLastError() == ERROR_INVALID_PARAMETER) /* some win8 machines */,
|
||||
"Got unexpected err %lu.\n", GetLastError());
|
||||
|
||||
SetLastError(0xdeadbeef);
|
||||
ret = p_Copy_file(L"wine_test_dir/f1", L"wine_test_dir/f3");
|
||||
ok(ret == ERROR_SUCCESS, "Got unexpected ret %lu.\n", ret);
|
||||
ok(GetLastError() == ret, "Got unexpected err %lu.\n", GetLastError());
|
||||
ok(GetLastError() == ret || broken(GetLastError() == ERROR_INVALID_PARAMETER) /* some win8 machines */,
|
||||
"Got unexpected err %lu.\n", GetLastError());
|
||||
|
||||
SetLastError(0xdeadbeef);
|
||||
ret = p_Copy_file(L"wine_test_dir/missing", L"wine_test_dir/f3");
|
||||
|
|
Loading…
Reference in New Issue