Commit 4ec2fcc9 authored by Alexandre Julliard's avatar Alexandre Julliard

mapi32/tests: Don't use sizeof in ok() to avoid printf format warnings.

parent c6b342d8
...@@ -824,17 +824,14 @@ static void test_ScCopyRelocProps(void) ...@@ -824,17 +824,14 @@ static void test_ScCopyRelocProps(void)
ulCount = 0; ulCount = 0;
sc = pScCopyProps(1, &pvProp, buffer, &ulCount); sc = pScCopyProps(1, &pvProp, buffer, &ulCount);
ok(sc == S_OK && lpResProp->ulPropTag == pvProp.ulPropTag && ok(sc == S_OK, "wrong ret %ld\n", sc);
lpResProp->Value.MVszA.cValues == 1 && ok(lpResProp->ulPropTag == pvProp.ulPropTag, "wrong tag %lx\n",lpResProp->ulPropTag);
lpResProp->Value.MVszA.lppszA[0] == buffer + sizeof(SPropValue) + sizeof(char*) && ok(lpResProp->Value.MVszA.cValues == 1, "wrong cValues %ld\n", lpResProp->Value.MVszA.cValues);
ulCount == sizeof(SPropValue) + sizeof(char*) + 5 && ok(lpResProp->Value.MVszA.lppszA[0] == buffer + sizeof(SPropValue) + sizeof(char*),
!strcmp(lpResProp->Value.MVszA.lppszA[0], szTestA), "wrong lppszA[0] %p\n",lpResProp->Value.MVszA.lppszA[0]);
"CopyProps(str): Expected 0 {1,%lx,%p,%s} %d got 0x%08lx {%ld,%lx,%p,%s} %ld\n", ok(ulCount == sizeof(SPropValue) + sizeof(char*) + 5, "wrong count %ld\n", ulCount);
pvProp.ulPropTag, buffer + sizeof(SPropValue) + sizeof(char*), ok(!strcmp(lpResProp->Value.MVszA.lppszA[0], szTestA),
szTestA, sizeof(SPropValue) + sizeof(char*) + 5, sc, "wrong string '%s'\n", lpResProp->Value.MVszA.lppszA[0]);
lpResProp->Value.MVszA.cValues, lpResProp->ulPropTag,
sc==S_OK?lpResProp->Value.MVszA.lppszA[0]:NULL,
sc==S_OK?lpResProp->Value.MVszA.lppszA[0]:NULL, ulCount);
memcpy(buffer2, buffer, sizeof(buffer)); memcpy(buffer2, buffer, sizeof(buffer));
...@@ -847,21 +844,20 @@ static void test_ScCopyRelocProps(void) ...@@ -847,21 +844,20 @@ static void test_ScCopyRelocProps(void)
sc = pScRelocProps(1, (LPSPropValue)buffer2, buffer, buffer2, &ulCount); sc = pScRelocProps(1, (LPSPropValue)buffer2, buffer, buffer2, &ulCount);
lpResProp = (LPSPropValue)buffer2; lpResProp = (LPSPropValue)buffer2;
ok(sc == S_OK && lpResProp->ulPropTag == pvProp.ulPropTag &&
lpResProp->Value.MVszA.cValues == 1 && ok(sc == S_OK, "wrong ret %ld\n", sc);
lpResProp->Value.MVszA.lppszA[0] == buffer2 + sizeof(SPropValue) + sizeof(char*) && ok(lpResProp->ulPropTag == pvProp.ulPropTag, "wrong tag %lx\n",lpResProp->ulPropTag);
/* Native has a bug whereby it calculates the size correctly when copying ok(lpResProp->Value.MVszA.cValues == 1, "wrong cValues %ld\n", lpResProp->Value.MVszA.cValues);
* but when relocating does not (presumably it uses UlPropSize() which ok(lpResProp->Value.MVszA.lppszA[0] == buffer2 + sizeof(SPropValue) + sizeof(char*),
* ignores multivalue pointers). Wine returns the correct value. "wrong lppszA[0] %p\n",lpResProp->Value.MVszA.lppszA[0]);
*/ /* Native has a bug whereby it calculates the size correctly when copying
(ulCount == sizeof(SPropValue) + sizeof(char*) + 5 || ulCount == sizeof(SPropValue) + 5) && * but when relocating does not (presumably it uses UlPropSize() which
!strcmp(lpResProp->Value.MVszA.lppszA[0], szTestA), * ignores multivalue pointers). Wine returns the correct value.
"RelocProps(str): Expected 0 {1,%lx,%p,%s} %d got 0x%08lx {%ld,%lx,%p,%s} %ld\n", */
pvProp.ulPropTag, buffer2 + sizeof(SPropValue) + sizeof(char*), ok(ulCount == sizeof(SPropValue) + sizeof(char*) + 5 || ulCount == sizeof(SPropValue) + 5,
szTestA, sizeof(SPropValue) + sizeof(char*) + 5, sc, "wrong count %ld\n", ulCount);
lpResProp->Value.MVszA.cValues, lpResProp->ulPropTag, ok(!strcmp(lpResProp->Value.MVszA.lppszA[0], szTestA),
sc==S_OK?lpResProp->Value.MVszA.lppszA[0]:NULL, "wrong string '%s'\n", lpResProp->Value.MVszA.lppszA[0]);
sc==S_OK?lpResProp->Value.MVszA.lppszA[0]:NULL, ulCount);
/* Native crashes with lpNew or lpOld set to NULL so skip testing this */ /* Native crashes with lpNew or lpOld set to NULL so skip testing this */
} }
......
...@@ -140,7 +140,7 @@ static void test_UlFromSzHex(void) ...@@ -140,7 +140,7 @@ static void test_UlFromSzHex(void)
static void test_CbOfEncoded(void) static void test_CbOfEncoded(void)
{ {
char buff[129]; char buff[129];
size_t i; unsigned int i;
pCbOfEncoded = (void*)GetProcAddress(hMapi32, "CbOfEncoded@4"); pCbOfEncoded = (void*)GetProcAddress(hMapi32, "CbOfEncoded@4");
if (!pCbOfEncoded) if (!pCbOfEncoded)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment