[1/4] msi/tests: Fix test when content indexing is disabled.

Alexandre Julliard julliard at winehq.org
Fri Apr 10 04:11:38 CDT 2009


Nicolas Le Cam <niko.lecam at gmail.com> writes:

> @@ -2308,7 +2308,7 @@ static void test_setpropertyfolder(void)
>  
>      r = MsiInstallProductA(msifile, NULL);
>      ok(r == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %u\n", r);
> -    if (GetFileAttributesA(path) == FILE_ATTRIBUTE_DIRECTORY)
> +    if (GetFileAttributesA(path) & FILE_ATTRIBUTE_DIRECTORY)
>      {
>          ok(delete_pf("msitest\\added\\maximus", TRUE), "File not installed\n");
>          ok(delete_pf("msitest\\added", FALSE), "File not installed\n");

You most likely need to check for GetFileAttributesA failure first.

-- 
Alexandre Julliard
julliard at winehq.org



More information about the wine-devel mailing list