Commit 70c572fe authored by Juan Lang's avatar Juan Lang Committed by Alexandre Julliard

mapi32: Fix some test failures on Win9x.

parent 772a9b35
......@@ -151,7 +151,8 @@ static void test_CbOfEncoded(void)
memset(buff, '\0', sizeof(buff));
memset(buff, '?', i);
ulRet = pCbOfEncoded(buff);
ok(ulRet == ulExpected, "CbOfEncoded(length %d): expected %d, got %d\n",
ok(ulRet == ulExpected || broken(ulExpected == 0) /* Win9x */,
"CbOfEncoded(length %d): expected %d, got %d\n",
i, ulExpected, ulRet);
}
}
......
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