mirror of
https://github.com/reactos/reactos.git
synced 2024-12-04 08:53:32 +08:00
[WINESYNC] msi/tests: Avoid test failure when running as an unprivileged user.
Signed-off-by: Hans Leidekker <hans@codeweavers.com> Signed-off-by: Alexandre Julliard <julliard@winehq.org> wine commit id 90422f9bb59d4a2e34ad9cffbb4f04b896ab7235 by Hans Leidekker <hans@codeweavers.com>
This commit is contained in:
parent
ad8c894b8f
commit
fb0b52255c
@ -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"));
|
||||
|
Loading…
Reference in New Issue
Block a user