mirror of
git://source.winehq.org/git/wine.git
synced 2024-10-31 10:41:12 +00:00
advapi32/tests: Add a test to cover second RegSetValueW Parameter (gcov).
This commit is contained in:
parent
7476bb0556
commit
c2c3b51650
1 changed files with 6 additions and 1 deletions
|
@ -353,7 +353,12 @@ static void test_set_value(void)
|
|||
test_hkey_main_Value_A(NULL, string1A, sizeof(string1A));
|
||||
test_hkey_main_Value_W(NULL, string1W, sizeof(string1W));
|
||||
|
||||
/* RegSetValueA ignores the size passed in */
|
||||
ret = RegSetValueW(hkey_main, name1W, REG_SZ, string1W, sizeof(string1W));
|
||||
ok(ret == ERROR_SUCCESS, "RegSetValueW failed: %d, GLE=%d\n", ret, GetLastError());
|
||||
test_hkey_main_Value_A(name1A, string1A, sizeof(string1A));
|
||||
test_hkey_main_Value_W(name1W, string1W, sizeof(string1W));
|
||||
|
||||
/* RegSetValueW ignores the size passed in */
|
||||
ret = RegSetValueW(hkey_main, NULL, REG_SZ, string1W, 4 * sizeof(string1W[0]));
|
||||
ok(ret == ERROR_SUCCESS, "RegSetValueW failed: %d, GLE=%d\n", ret, GetLastError());
|
||||
test_hkey_main_Value_A(NULL, string1A, sizeof(string1A));
|
||||
|
|
Loading…
Reference in a new issue