regedit/tests: Test if REG_SZ and REG_DWORD support line concatenation.

Signed-off-by: Hugh McMaster <hugh.mcmaster@outlook.com>
Signed-off-by: Alexandre Julliard <julliard@winehq.org>
oldstable
Hugh McMaster 2017-05-17 12:23:36 +00:00 committed by Alexandre Julliard
parent a0f5a2cc12
commit 3ce4beb0a7
1 changed files with 9 additions and 0 deletions

View File

@ -598,6 +598,15 @@ static void test_invalid_import(void)
verify_reg(hkey, "Test17b", REG_SZ, "Value 2", 8, 0);
verify_reg_nonexist(hkey, "Test17c");
exec_import_str("REGEDIT4\n\n"
"[HKEY_CURRENT_USER\\" KEY_BASE "]\n"
"\"Test18a\"=dword:1234\\\n"
"5678\n"
"\"Test18b\"=\"Test \\\n"
"Value\"\n\n");
todo_wine verify_reg_nonexist(hkey, "Test18a");
todo_wine verify_reg_nonexist(hkey, "Test18b");
RegCloseKey(hkey);
lr = RegDeleteKeyA(HKEY_CURRENT_USER, KEY_BASE);