mirror of
https://github.com/reactos/wine.git
synced 2024-11-24 12:20:07 +00:00
regedit/tests: Move existing comment tests to a separate function.
Signed-off-by: Hugh McMaster <hugh.mcmaster@outlook.com> Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
parent
68ca28a8bc
commit
ced6d4618b
@ -278,14 +278,6 @@ static void test_basic_import(void)
|
||||
verify_reg(hkey, "Wine6", REG_DWORD, &dword, sizeof(dword), 0);
|
||||
todo_wine verify_reg(hkey, "Wine7", REG_SZ, "No newline", 11, 0);
|
||||
|
||||
exec_import_str("REGEDIT4\n\n"
|
||||
"[HKEY_CURRENT_USER\\" KEY_BASE "]\n"
|
||||
"#comment\\\n"
|
||||
"\"Wine8\"=\"Line 1\"\n"
|
||||
";comment \\\n"
|
||||
"\"Wine9\"=\"Line 2\"\n\n");
|
||||
verify_reg(hkey, "Wine8", REG_SZ, "Line 1", 7, 0);
|
||||
verify_reg(hkey, "Wine9", REG_SZ, "Line 2", 7, 0);
|
||||
RegCloseKey(hkey);
|
||||
|
||||
lr = RegDeleteKeyA(HKEY_CURRENT_USER, KEY_BASE);
|
||||
@ -344,6 +336,30 @@ static void test_invalid_import(void)
|
||||
ok(lr == ERROR_SUCCESS, "RegDeleteKeyA failed: %d\n", lr);
|
||||
}
|
||||
|
||||
static void test_comments(void)
|
||||
{
|
||||
LONG lr;
|
||||
HKEY hkey;
|
||||
|
||||
lr = RegDeleteKeyA(HKEY_CURRENT_USER, KEY_BASE);
|
||||
ok(lr == ERROR_SUCCESS || lr == ERROR_FILE_NOT_FOUND, "RegDeleteKeyA failed: %d\n", lr);
|
||||
|
||||
exec_import_str("REGEDIT4\n\n"
|
||||
"[HKEY_CURRENT_USER\\" KEY_BASE "]\n"
|
||||
"#comment\\\n"
|
||||
"\"Wine1\"=\"Line 1\"\n"
|
||||
";comment\\\n"
|
||||
"\"Wine2\"=\"Line 2\"\n\n");
|
||||
lr = RegOpenKeyExA(HKEY_CURRENT_USER, KEY_BASE, 0, KEY_READ, &hkey);
|
||||
verify_reg(hkey, "Wine1", REG_SZ, "Line 1", 7, 0);
|
||||
verify_reg(hkey, "Wine2", REG_SZ, "Line 2", 7, 0);
|
||||
|
||||
RegCloseKey(hkey);
|
||||
|
||||
lr = RegDeleteKeyA(HKEY_CURRENT_USER, KEY_BASE);
|
||||
ok(lr == ERROR_SUCCESS, "RegDeleteKeyA failed: %d\n", lr);
|
||||
}
|
||||
|
||||
START_TEST(regedit)
|
||||
{
|
||||
WCHAR wchar_test[] = {0xFEFF,'W','i','n','d','o','w','s',' ','R','e','g',
|
||||
@ -359,4 +375,5 @@ START_TEST(regedit)
|
||||
|
||||
test_basic_import();
|
||||
test_invalid_import();
|
||||
test_comments();
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user