[PATCH] msi/tests: Avoid test failure when running as an unprivileged user.

Hans Leidekker hans at codeweavers.com
Fri Jan 3 03:06:53 CST 2020


Signed-off-by: Hans Leidekker <hans at codeweavers.com>
---
 dlls/msi/tests/package.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dlls/msi/tests/package.c b/dlls/msi/tests/package.c
index 3c547bf04a..3b7b11d81e 100644
--- a/dlls/msi/tests/package.c
+++ b/dlls/msi/tests/package.c
@@ -4054,7 +4054,6 @@ static void test_appsearch(void)
 
     r = RegCreateKeyExA(HKEY_LOCAL_MACHINE, "Software\\Winetest_msi", 0, NULL, 0, KEY_ALL_ACCESS|KEY_WOW64_32KEY,
                         NULL, &hkey, NULL);
-    ok( r == ERROR_SUCCESS, "Could not create key: %d.\n", r );
     if (r == ERROR_ACCESS_DENIED)
     {
         skip("insufficient rights\n");
@@ -4063,6 +4062,7 @@ static void test_appsearch(void)
         DeleteFileA(msifile);
         return;
     }
+    ok( r == ERROR_SUCCESS, "Could not create key: %d.\n", r );
 
     r = RegSetValueExA(hkey, NULL, 0, REG_SZ, (const BYTE *)"c:\\windows\\system32\\notepad.exe",
                        sizeof("c:\\windows\\system32\\notepad.exe"));
-- 
2.20.1




More information about the wine-devel mailing list