mirror of
https://github.com/reactos/wine.git
synced 2024-11-24 20:30:01 +00:00
msi/tests: Fix the scope of todo_wine in the tests for MsiApplyMultiplePatches.
These tests succeed on Wine if you run them from a volume for which GetDriveType returns something other than DRIVE_FIXED, e.g. a ramdisk.
This commit is contained in:
parent
4b5db7a9ac
commit
e609bb0453
@ -12794,51 +12794,31 @@ static void test_MsiApplyMultiplePatches(void)
|
||||
ok(r == ERROR_INVALID_PARAMETER, "Expected ERROR_INVALID_PARAMETER, got %u\n", r);
|
||||
|
||||
r = pMsiApplyMultiplePatchesA(";", NULL, NULL);
|
||||
todo_wine
|
||||
{
|
||||
if (type == DRIVE_FIXED)
|
||||
ok(r == ERROR_PATH_NOT_FOUND,
|
||||
"Expected ERROR_PATH_NOT_FOUND, got %u\n", r);
|
||||
else
|
||||
ok(r == ERROR_INVALID_NAME,
|
||||
"Expected ERROR_INVALID_NAME, got %u\n", r);
|
||||
}
|
||||
if (type == DRIVE_FIXED)
|
||||
todo_wine ok(r == ERROR_PATH_NOT_FOUND, "Expected ERROR_PATH_NOT_FOUND, got %u\n", r);
|
||||
else
|
||||
ok(r == ERROR_INVALID_NAME, "Expected ERROR_INVALID_NAME, got %u\n", r);
|
||||
|
||||
r = pMsiApplyMultiplePatchesA(" ;", NULL, NULL);
|
||||
todo_wine
|
||||
{
|
||||
if (type == DRIVE_FIXED)
|
||||
ok(r == ERROR_PATCH_PACKAGE_OPEN_FAILED,
|
||||
"Expected ERROR_PATCH_PACKAGE_OPEN_FAILED, got %u\n", r);
|
||||
else
|
||||
ok(r == ERROR_INVALID_NAME,
|
||||
"Expected ERROR_INVALID_NAME, got %u\n", r);
|
||||
}
|
||||
if (type == DRIVE_FIXED)
|
||||
todo_wine ok(r == ERROR_PATCH_PACKAGE_OPEN_FAILED, "Expected ERROR_PATCH_PACKAGE_OPEN_FAILED, got %u\n", r);
|
||||
else
|
||||
ok(r == ERROR_INVALID_NAME, "Expected ERROR_INVALID_NAME, got %u\n", r);
|
||||
|
||||
r = pMsiApplyMultiplePatchesA(";;", NULL, NULL);
|
||||
todo_wine
|
||||
{
|
||||
if (type == DRIVE_FIXED)
|
||||
ok(r == ERROR_PATH_NOT_FOUND,
|
||||
"Expected ERROR_PATH_NOT_FOUND, got %u\n", r);
|
||||
else
|
||||
ok(r == ERROR_INVALID_NAME,
|
||||
"Expected ERROR_INVALID_NAME, got %u\n", r);
|
||||
}
|
||||
if (type == DRIVE_FIXED)
|
||||
todo_wine ok(r == ERROR_PATH_NOT_FOUND, "Expected ERROR_PATH_NOT_FOUND, got %u\n", r);
|
||||
else
|
||||
ok(r == ERROR_INVALID_NAME, "Expected ERROR_INVALID_NAME, got %u\n", r);
|
||||
|
||||
r = pMsiApplyMultiplePatchesA("nosuchpatchpackage;", NULL, NULL);
|
||||
todo_wine ok(r == ERROR_FILE_NOT_FOUND, "Expected ERROR_FILE_NOT_FOUND, got %u\n", r);
|
||||
|
||||
r = pMsiApplyMultiplePatchesA(";nosuchpatchpackage", NULL, NULL);
|
||||
todo_wine
|
||||
{
|
||||
if (type == DRIVE_FIXED)
|
||||
ok(r == ERROR_PATH_NOT_FOUND,
|
||||
"Expected ERROR_PATH_NOT_FOUND, got %u\n", r);
|
||||
else
|
||||
ok(r == ERROR_INVALID_NAME,
|
||||
"Expected ERROR_INVALID_NAME, got %u\n", r);
|
||||
}
|
||||
if (type == DRIVE_FIXED)
|
||||
todo_wine ok(r == ERROR_PATH_NOT_FOUND, "Expected ERROR_PATH_NOT_FOUND, got %u\n", r);
|
||||
else
|
||||
ok(r == ERROR_INVALID_NAME, "Expected ERROR_INVALID_NAME, got %u\n", r);
|
||||
|
||||
r = pMsiApplyMultiplePatchesA("nosuchpatchpackage;nosuchpatchpackage", NULL, NULL);
|
||||
todo_wine ok(r == ERROR_FILE_NOT_FOUND, "Expected ERROR_FILE_NOT_FOUND, got %u\n", r);
|
||||
|
Loading…
Reference in New Issue
Block a user