Hugh McMaster : reg/tests: Add a test for base 10 overflow.

Alexandre Julliard julliard at wine.codeweavers.com
Tue Feb 23 11:24:21 CST 2016


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

Author: Hugh McMaster <hugh.mcmaster at outlook.com>
Date:   Mon Feb 22 20:29:19 2016 +1100

reg/tests: Add a test for base 10 overflow.

Signed-off-by: Hugh McMaster <hugh.mcmaster at outlook.com>
Signed-off-by: Alexandre Julliard <julliard at winehq.org>

---

 programs/reg/tests/reg.c | 3 +++
 1 file changed, 3 insertions(+)

diff --git a/programs/reg/tests/reg.c b/programs/reg/tests/reg.c
index d660a07..2c71b5c 100644
--- a/programs/reg/tests/reg.c
+++ b/programs/reg/tests/reg.c
@@ -303,6 +303,9 @@ static void test_add(void)
     dword = 0x123;
     verify_reg(hkey, "dword14", REG_DWORD, &dword, sizeof(dword), 0);
 
+    run_reg_exe("reg add HKCU\\" KEY_BASE " /v dword15 /t REG_DWORD /d 4294967296 /f", &r);
+    ok(r == REG_EXIT_FAILURE || broken(r == REG_EXIT_SUCCESS /* WinXP */), "got exit code %u\n", r);
+
     /* REG_DWORD_LITTLE_ENDIAN */
     run_reg_exe("reg add HKCU\\" KEY_BASE " /v DWORD_LE /t REG_DWORD_LITTLE_ENDIAN /d 456 /f", &r);
     ok(r == REG_EXIT_SUCCESS, "got exit code %d, expected 0\n", r);




More information about the wine-cvs mailing list