Commit 8ecc0d41 authored by Hugh McMaster's avatar Hugh McMaster Committed by Alexandre Julliard

regedit/tests: Add REG_NONE to the empty hex data import tests.

parent a5de10a2
......@@ -659,7 +659,8 @@ static void test_basic_import(void)
"\"Wine22e\"=hex(7):\n"
"\"Wine22f\"=hex(100):\n"
"\"Wine22g\"=hex(abcd):\n"
"\"Wine22h\"=hex:\n\n");
"\"Wine22h\"=hex:\n"
"\"Wine22i\"=hex(0):\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);
......@@ -668,6 +669,7 @@ static void test_basic_import(void)
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);
verify_reg(hkey, "Wine22i", REG_NONE, NULL, 0, 0);
RegCloseKey(hkey);
......@@ -1072,7 +1074,8 @@ static void test_basic_import_unicode(void)
"\"Wine22e\"=hex(7):\n"
"\"Wine22f\"=hex(100):\n"
"\"Wine22g\"=hex(abcd):\n"
"\"Wine22h\"=hex:\n\n");
"\"Wine22h\"=hex:\n"
"\"Wine22i\"=hex(0):\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);
......@@ -1081,6 +1084,7 @@ static void test_basic_import_unicode(void)
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);
verify_reg(hkey, "Wine22i", REG_NONE, NULL, 0, 0);
RegCloseKey(hkey);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment