Skip to content
Snippets Groups Projects
Commit 2a992c0c authored by Hugh McMaster's avatar Hugh McMaster Committed by Alexandre Julliard
Browse files

reg/tests: Test whether a line beginning with a backslash can follow a line ending in a backslash.

parent 72ecfe55
No related branches found
No related tags found
No related merge requests found
......@@ -2001,6 +2001,18 @@ static void test_import(void)
todo_wine verify_reg_nonexist(hkey, "Wine58e");
todo_wine verify_reg(hkey, NULL, REG_SZ, "Default value 5", 16, 0);
test_import_str("REGEDIT4\n\n"
"[HKEY_CURRENT_USER\\" KEY_BASE "]\n"
"\"Wine59a\"=hex:11,22,33,\\\n"
"\\\n"
" 44,55,66\n"
"\"Wine59b\"=hex:11,22,33,\\\n"
" \\\n"
" 44,55,66\n\n", &r);
todo_wine ok(r == REG_EXIT_SUCCESS, "got exit code %d, expected 0\n", r);
todo_wine verify_reg_nonexist(hkey, "Wine59a");
todo_wine verify_reg_nonexist(hkey, "Wine59b");
err = RegCloseKey(hkey);
todo_wine ok(err == ERROR_SUCCESS, "got %d, expected 0\n", err);
......@@ -3187,6 +3199,18 @@ static void test_unicode_import(void)
todo_wine verify_reg_nonexist(hkey, "Wine58e");
todo_wine verify_reg(hkey, NULL, REG_SZ, "Default value 5", 16, 0);
test_import_wstr("\xef\xbb\xbfWindows Registry Editor Version 5.00\n\n"
"[HKEY_CURRENT_USER\\" KEY_BASE "]\n"
"\"Wine59a\"=hex:11,22,33,\\\n"
"\\\n"
" 44,55,66\n"
"\"Wine59b\"=hex:11,22,33,\\\n"
" \\\n"
" 44,55,66\n\n", &r);
todo_wine ok(r == REG_EXIT_SUCCESS, "got exit code %d, expected 0\n", r);
todo_wine verify_reg_nonexist(hkey, "Wine59a");
todo_wine verify_reg_nonexist(hkey, "Wine59b");
err = RegCloseKey(hkey);
todo_wine ok(err == ERROR_SUCCESS, "got %d, expected 0\n", err);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment