reg/tests: Separate Unicode import tests from the combined import tests.

Signed-off-by: Hugh McMaster <hugh.mcmaster@outlook.com>
Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
Hugh McMaster 2017-06-26 13:47:42 +00:00 committed by Alexandre Julliard
parent 758340a6e1
commit 22f57c7888
1 changed files with 18 additions and 1 deletions

View File

@ -1836,8 +1836,16 @@ static void test_import(void)
err = RegDeleteKeyA(HKEY_CURRENT_USER, KEY_BASE);
todo_wine ok(err == ERROR_SUCCESS, "got %d, expected 0\n", err);
}
static void test_unicode_import(void)
{
DWORD r, dword = 0x123, type, size;
HKEY hkey, subkey;
LONG err;
char buffer[8];
BYTE hex[8];
/* Test file contents - Unicode */
test_import_wstr("REGEDIT\n", &r);
ok(r == REG_EXIT_FAILURE || broken(r == REG_EXIT_SUCCESS) /* WinXP */,
"got exit code %d, expected 1\n", r);
@ -2984,6 +2992,13 @@ static void test_import_with_whitespace(void)
err = RegDeleteKeyA(HKEY_CURRENT_USER, KEY_BASE);
todo_wine ok(err == ERROR_SUCCESS, "RegDeleteKeyA failed: got %d, expected 0\n", err);
}
static void test_unicode_import_with_whitespace(void)
{
HKEY hkey;
DWORD r, dword;
LONG err;
test_import_wstr("\xef\xbb\xbf Windows Registry Editor Version 5.00\n\n"
"[HKEY_CURRENT_USER\\" KEY_BASE "]\n\n", &r);
@ -3139,5 +3154,7 @@ START_TEST(reg)
test_query();
test_v_flags();
test_import();
test_unicode_import();
test_import_with_whitespace();
test_unicode_import_with_whitespace();
}