regedit/tests: Add REG_BINARY to the empty hex data import tests.
Signed-off-by: Hugh McMaster <hugh.mcmaster@outlook.com> Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
parent
6607065356
commit
1e6bf7d996
|
@ -652,7 +652,8 @@ static void test_basic_import(void)
|
|||
"\"Wine22d\"=hex(4):\n"
|
||||
"\"Wine22e\"=hex(7):\n"
|
||||
"\"Wine22f\"=hex(100):\n"
|
||||
"\"Wine22g\"=hex(abcd):\n\n");
|
||||
"\"Wine22g\"=hex(abcd):\n"
|
||||
"\"Wine22h\"=hex:\n\n");
|
||||
verify_reg(hkey, "Wine22a", REG_SZ, NULL, 0, 0);
|
||||
verify_reg(hkey, "Wine22b", REG_EXPAND_SZ, NULL, 0, TODO_REG_SIZE);
|
||||
verify_reg(hkey, "Wine22c", REG_BINARY, NULL, 0, 0);
|
||||
|
@ -660,6 +661,7 @@ static void test_basic_import(void)
|
|||
verify_reg(hkey, "Wine22e", REG_MULTI_SZ, NULL, 0, TODO_REG_SIZE);
|
||||
verify_reg(hkey, "Wine22f", 0x100, NULL, 0, 0);
|
||||
verify_reg(hkey, "Wine22g", 0xabcd, NULL, 0, 0);
|
||||
verify_reg(hkey, "Wine22h", REG_BINARY, NULL, 0, 0);
|
||||
|
||||
RegCloseKey(hkey);
|
||||
|
||||
|
@ -1066,7 +1068,8 @@ static void test_basic_import_unicode(void)
|
|||
"\"Wine22d\"=hex(4):\n"
|
||||
"\"Wine22e\"=hex(7):\n"
|
||||
"\"Wine22f\"=hex(100):\n"
|
||||
"\"Wine22g\"=hex(abcd):\n\n");
|
||||
"\"Wine22g\"=hex(abcd):\n"
|
||||
"\"Wine22h\"=hex:\n\n");
|
||||
verify_reg(hkey, "Wine22a", REG_SZ, NULL, 0, 0);
|
||||
verify_reg(hkey, "Wine22b", REG_EXPAND_SZ, NULL, 0, TODO_REG_SIZE);
|
||||
verify_reg(hkey, "Wine22c", REG_BINARY, NULL, 0, 0);
|
||||
|
@ -1074,6 +1077,7 @@ static void test_basic_import_unicode(void)
|
|||
verify_reg(hkey, "Wine22e", REG_MULTI_SZ, NULL, 0, TODO_REG_SIZE);
|
||||
verify_reg(hkey, "Wine22f", 0x100, NULL, 0, 0);
|
||||
verify_reg(hkey, "Wine22g", 0xabcd, NULL, 0, 0);
|
||||
verify_reg(hkey, "Wine22h", REG_BINARY, NULL, 0, 0);
|
||||
|
||||
RegCloseKey(hkey);
|
||||
|
||||
|
|
Loading…
Reference in New Issue