[PATCH] msvcrt/tests: Fix a test failure on early XP versions

Nikolay Sivov nsivov at codeweavers.com
Sat May 7 01:51:21 CDT 2016


Signed-off-by: Nikolay Sivov <nsivov at codeweavers.com>
---

Single failure is visible here http://test.winehq.org/data/tests/msvcrt:heap.html

 dlls/msvcrt/tests/heap.c | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/dlls/msvcrt/tests/heap.c b/dlls/msvcrt/tests/heap.c
index 82a5961..3d75cf1 100644
--- a/dlls/msvcrt/tests/heap.c
+++ b/dlls/msvcrt/tests/heap.c
@@ -474,8 +474,9 @@ static void test_calloc(void)
 
     errno = 0;
     ptr = calloc(~(size_t)0 / 2, ~(size_t)0 / 2);
-    ok(ptr == NULL, "got %p\n", ptr);
+    ok(ptr == NULL || broken(ptr != NULL) /* winxp sp0 */, "got %p\n", ptr);
     ok(errno == ENOMEM || broken(errno == 0) /* winxp, win2k3 */, "got errno %d\n", errno);
+    free(ptr);
 }
 
 START_TEST(heap)
-- 
2.8.1




More information about the wine-patches mailing list