mirror of
https://github.com/reactos/reactos.git
synced 2024-12-04 08:53:32 +08:00
[WINESYNC] msi: Remove system environment variables on uninstall.
Signed-off-by: Hans Leidekker <hans@codeweavers.com> Signed-off-by: Alexandre Julliard <julliard@winehq.org> wine commit id 7f95ed7cd2d440420c0c3d1a938af8b48960f352 by Hans Leidekker <hans@codeweavers.com>
This commit is contained in:
parent
4d61fb5224
commit
6537d52d54
@ -7064,7 +7064,7 @@ static UINT env_parse_flags( LPCWSTR *name, LPCWSTR *value, DWORD *flags )
|
||||
else if (*cptr == '!')
|
||||
*flags |= ENV_ACT_REMOVEMATCH;
|
||||
else if (*cptr == '*')
|
||||
*flags |= ENV_MOD_MACHINE;
|
||||
*flags |= ENV_MOD_MACHINE | ENV_ACT_REMOVE;
|
||||
else
|
||||
break;
|
||||
|
||||
|
@ -250,7 +250,8 @@ static const char env_environment_dat[] =
|
||||
"Var26\t+-MSITESTVAR20\t2[~]\tOne\n"
|
||||
"Var27\t+-MSITESTVAR21\t[~];1\tOne\n"
|
||||
"Var28\t-MSITESTVAR22\t1\tOne\n"
|
||||
"Var29\t-MSITESTVAR23\t2\tOne\n";
|
||||
"Var29\t-MSITESTVAR23\t2\tOne\n"
|
||||
"Var30\t*MSITESTVAR100\t1\tOne\n";
|
||||
|
||||
static const char service_install_dat[] =
|
||||
"ServiceInstall\tName\tDisplayName\tServiceType\tStartType\tErrorControl\t"
|
||||
@ -4846,7 +4847,7 @@ static void test_envvar(void)
|
||||
{
|
||||
char buffer[16];
|
||||
UINT r, i;
|
||||
HKEY env;
|
||||
HKEY env, env2;
|
||||
LONG res;
|
||||
|
||||
if (is_process_limited())
|
||||
@ -4860,6 +4861,10 @@ static void test_envvar(void)
|
||||
res = RegCreateKeyExA(HKEY_CURRENT_USER, "Environment", 0, NULL, 0, KEY_ALL_ACCESS, NULL, &env, NULL);
|
||||
ok(res == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", res);
|
||||
|
||||
res = RegCreateKeyExA(HKEY_LOCAL_MACHINE, "System\\CurrentControlSet\\Control\\Session Manager\\Environment",
|
||||
0, NULL, 0, KEY_ALL_ACCESS, NULL, &env2, NULL);
|
||||
ok(res == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", res);
|
||||
|
||||
res = RegSetValueExA(env, "MSITESTVAR1", 0, REG_SZ, (const BYTE *)"0", 2);
|
||||
ok(res == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", res);
|
||||
|
||||
@ -4913,6 +4918,7 @@ static void test_envvar(void)
|
||||
CHECK_REG_STR(env, "MSITESTVAR19", "1");
|
||||
CHECK_REG_STR(env, "MSITESTVAR20", "1");
|
||||
CHECK_REG_STR(env, "MSITESTVAR21", "1");
|
||||
CHECK_REG_STR(env2, "MSITESTVAR100", "1");
|
||||
|
||||
res = RegSetValueExA(env, "MSITESTVAR22", 0, REG_SZ, (const BYTE *)"1", 2);
|
||||
ok(res == ERROR_SUCCESS, "Expected ERROR_SUCCESS, got %d\n", res);
|
||||
@ -4940,11 +4946,15 @@ todo_wine {
|
||||
ok(res == ERROR_FILE_NOT_FOUND, "[%d] got %u\n", i, res);
|
||||
}
|
||||
|
||||
res = RegDeleteValueA(env2, "MSITESTVAR100");
|
||||
ok(res == ERROR_FILE_NOT_FOUND, "Expected ERROR_FILE_NOT_FOUND, got %d\n", res);
|
||||
|
||||
error:
|
||||
RegDeleteValueA(env, "MSITESTVAR1");
|
||||
RegDeleteValueA(env, "MSITESTVAR2");
|
||||
RegDeleteValueA(env, "MSITESTVAR21");
|
||||
RegCloseKey(env);
|
||||
RegCloseKey(env2);
|
||||
|
||||
DeleteFileA(msifile);
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user