=?UTF-8?Q?Andr=C3=A9=20Hentschel=20?=: advapi32/tests: Add a test to cover second RegSetValueW Parameter (gcov).

Alexandre Julliard julliard at winehq.org
Wed Feb 15 13:14:04 CST 2012


Module: wine
Branch: master
Commit: c2c3b51650a8ebda2e4af2150bd1b7041a1ea8c9
URL:    http://source.winehq.org/git/wine.git/?a=commit;h=c2c3b51650a8ebda2e4af2150bd1b7041a1ea8c9

Author: André Hentschel <nerv at dawncrow.de>
Date:   Tue Feb 14 20:35:09 2012 +0100

advapi32/tests: Add a test to cover second RegSetValueW Parameter (gcov).

---

 dlls/advapi32/tests/registry.c |    7 ++++++-
 1 files changed, 6 insertions(+), 1 deletions(-)

diff --git a/dlls/advapi32/tests/registry.c b/dlls/advapi32/tests/registry.c
index 60bc451..c0a7ebf 100644
--- a/dlls/advapi32/tests/registry.c
+++ b/dlls/advapi32/tests/registry.c
@@ -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));




More information about the wine-cvs mailing list