Rob Shearman : ole32: Output the size that we didn' t expect in the HGLOBAL marshalling tests.

Alexandre Julliard julliard at winehq.org
Mon Feb 9 10:29:49 CST 2009


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

Author: Rob Shearman <robertshearman at gmail.com>
Date:   Sun Feb  8 18:02:07 2009 +0000

ole32: Output the size that we didn't expect in the HGLOBAL marshalling tests.

---

 dlls/ole32/tests/usrmarshal.c |    4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/dlls/ole32/tests/usrmarshal.c b/dlls/ole32/tests/usrmarshal.c
index aa81e35..03ced75 100644
--- a/dlls/ole32/tests/usrmarshal.c
+++ b/dlls/ole32/tests/usrmarshal.c
@@ -199,11 +199,11 @@ static void test_marshal_HGLOBAL(void)
     wirehglobal += sizeof(ULONG);
     ok(*(ULONG *)wirehglobal == (ULONG)(ULONG_PTR)hglobal, "buffer+0x4 should be HGLOBAL\n");
     wirehglobal += sizeof(ULONG);
-    ok(*(ULONG *)wirehglobal == 4, "buffer+0x8 should be size of HGLOBAL\n");
+    ok(*(ULONG *)wirehglobal == 4, "buffer+0x8 should be size of HGLOBAL instead of %d\n", *(ULONG *)wirehglobal);
     wirehglobal += sizeof(ULONG);
     ok(*(ULONG *)wirehglobal == (ULONG)(ULONG_PTR)hglobal, "buffer+0xc should be HGLOBAL\n");
     wirehglobal += sizeof(ULONG);
-    ok(*(ULONG *)wirehglobal == 4, "buffer+0x10 should be size of HGLOBAL\n");
+    ok(*(ULONG *)wirehglobal == 4, "buffer+0x10 should be size of HGLOBAL instead of %d\n", *(ULONG *)wirehglobal);
     wirehglobal += sizeof(ULONG);
     for (i = 0; i < 4; i++)
         ok(wirehglobal[i] == i, "buffer+0x%x should be %d\n", 0x10 + i, i);




More information about the wine-cvs mailing list