msi/tests: Fix test when content indexing is disabled.
This commit is contained in:
parent
6e970c5d95
commit
112bb084f1
|
@ -2295,6 +2295,7 @@ static void test_setpropertyfolder(void)
|
||||||
{
|
{
|
||||||
UINT r;
|
UINT r;
|
||||||
CHAR path[MAX_PATH];
|
CHAR path[MAX_PATH];
|
||||||
|
DWORD attr;
|
||||||
|
|
||||||
lstrcpyA(path, PROG_FILES_DIR);
|
lstrcpyA(path, PROG_FILES_DIR);
|
||||||
lstrcatA(path, "\\msitest\\added");
|
lstrcatA(path, "\\msitest\\added");
|
||||||
|
@ -2308,7 +2309,8 @@ static void test_setpropertyfolder(void)
|
||||||
|
|
||||||
r = MsiInstallProductA(msifile, NULL);
|
r = MsiInstallProductA(msifile, NULL);
|
||||||
ok(r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %u\n", r);
|
ok(r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %u\n", r);
|
||||||
if (GetFileAttributesA(path) == FILE_ATTRIBUTE_DIRECTORY)
|
attr = GetFileAttributesA(path);
|
||||||
|
if (attr != INVALID_FILE_ATTRIBUTES && (attr & FILE_ATTRIBUTE_DIRECTORY))
|
||||||
{
|
{
|
||||||
ok(delete_pf("msitest\\added\\maximus", TRUE), "File not installed\n");
|
ok(delete_pf("msitest\\added\\maximus", TRUE), "File not installed\n");
|
||||||
ok(delete_pf("msitest\\added", FALSE), "File not installed\n");
|
ok(delete_pf("msitest\\added", FALSE), "File not installed\n");
|
||||||
|
|
Loading…
Reference in New Issue