[PATCH 6/6] reg.exe/tests: Add REG_DWORD_BIG_ENDIAN tests for reg add

Jonathan Vollebregt jnvsor at gmail.com
Mon Oct 20 15:24:56 CDT 2014


Apparently this is broken in every version of windows.
---
 programs/reg/tests/reg.c | 8 ++++++++
 1 file changed, 8 insertions(+)

diff --git a/programs/reg/tests/reg.c b/programs/reg/tests/reg.c
index 7444deb..aaaf9f7 100644
--- a/programs/reg/tests/reg.c
+++ b/programs/reg/tests/reg.c
@@ -244,6 +244,14 @@ static void test_add(void)
     dword = 456;
     verify_reg(hkey, "DWORD_LE", REG_DWORD_LITTLE_ENDIAN, &dword, sizeof(dword), 0);
 
+    /* REG_DWORD_BIG_ENDIAN */
+    run_reg_exe("reg add HKCU\\" KEY_BASE " /v DWORD_BE /t REG_DWORD_BIG_ENDIAN /d 456 /f", &r);
+    ok(r == REG_EXIT_SUCCESS, "got exit code %u, expected %u\n", r, REG_EXIT_SUCCESS);
+    dword = 456;
+    verify_reg(hkey, "DWORD_BE", REG_DWORD_BIG_ENDIAN, &dword, sizeof(dword), TODO_REG_SIZE);
+    /* REG_DWORD_BIG_ENDIAN is broken in every version of windows. It behaves like
+     * an ordinary REG_DWORD - that is little endian. GG */
+
     /* REG_MULTI_SZ */
     run_reg_exe("reg add HKCU\\" KEY_BASE " /v multi0 /t REG_MULTI_SZ /d \"three\\0little\\0strings\" /f", &r);
     ok(r == REG_EXIT_SUCCESS, "got exit code %u, expected %u\n", r, REG_EXIT_SUCCESS);
-- 
2.1.1




More information about the wine-patches mailing list