Hugh McMaster : reg/tests: Test whether "" is interpreted as the default registry value.
Module: wine Branch: master Commit: 103c8bb6d40e64f50647847b37cdae10fa2e3321 URL: http://source.winehq.org/git/wine.git/?a=commit;h=103c8bb6d40e64f50647847b37... Author: Hugh McMaster <hugh.mcmaster(a)outlook.com> Date: Thu Jun 15 11:58:30 2017 +0000 reg/tests: Test whether "" is interpreted as the default registry value. Signed-off-by: Hugh McMaster <hugh.mcmaster(a)outlook.com> Signed-off-by: Alexandre Julliard <julliard(a)winehq.org> --- programs/reg/tests/reg.c | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/programs/reg/tests/reg.c b/programs/reg/tests/reg.c index 36ec730..2c1cc67 100644 --- a/programs/reg/tests/reg.c +++ b/programs/reg/tests/reg.c @@ -1320,9 +1320,11 @@ static void test_import(void) test_import_str("REGEDIT4\n\n" "[HKEY_CURRENT_USER\\" KEY_BASE "]\n" - "\"Empty string\"=\"\"\n\n", &r); + "\"Empty string\"=\"\"\n" + "\"\"=\"Default Value Name\"\n\n", &r); todo_wine ok(r == REG_EXIT_SUCCESS, "got exit code %d, expected 0\n", r); todo_wine verify_reg(hkey, "Empty string", REG_SZ, "", 1, 0); + todo_wine verify_reg(hkey, NULL, REG_SZ, "Default Value Name", 19, 0); test_import_str("REGEDIT4\n\n" "[HKEY_CURRENT_USER\\" KEY_BASE "]\n" @@ -2160,9 +2162,11 @@ static void test_import(void) test_import_wstr("\xef\xbb\xbfWindows Registry Editor Version 5.00\n\n" "[HKEY_CURRENT_USER\\" KEY_BASE "]\n" - "\"Empty string\"=\"\"\n\n", &r); + "\"Empty string\"=\"\"\n" + "\"\"=\"Default registry value\"\n\n", &r); todo_wine ok(r == REG_EXIT_SUCCESS, "got exit code %d, expected 0\n", r); todo_wine verify_reg(hkey, "Empty string", REG_SZ, "", 1, 0); + todo_wine verify_reg(hkey, NULL, REG_SZ, "Default registry value", 23, 0); test_import_wstr("\xef\xbb\xbfWindows Registry Editor Version 5.00\n\n" "[HKEY_CURRENT_USER\\" KEY_BASE "]\n"
participants (1)
-
Alexandre Julliard