Module: wine Branch: master Commit: 713898df0c4424e28056aaf308ba9efa1147181f URL: http://source.winehq.org/git/wine.git/?a=commit;h=713898df0c4424e28056aaf308...
Author: Nikolay Sivov bunglehead@gmail.com Date: Mon May 25 23:51:54 2009 +0400
comctl32/mru: Fix test failures on Win9x.
---
dlls/comctl32/tests/mru.c | 8 +++++--- 1 files changed, 5 insertions(+), 3 deletions(-)
diff --git a/dlls/comctl32/tests/mru.c b/dlls/comctl32/tests/mru.c index ea05e02..c4da87b 100644 --- a/dlls/comctl32/tests/mru.c +++ b/dlls/comctl32/tests/mru.c @@ -430,9 +430,9 @@ static void test_CreateMRUListLazyA(void) HKEY hKey; CREATEMRULISTA listA = { 0 };
- if (!pCreateMRUListLazyA) + if (!pCreateMRUListLazyA || !pFreeMRUList) { - win_skip("CreateMRUListLazyA entry point 157 not found\n"); + win_skip("CreateMRUListLazyA or FreeMRUList entry points not found\n"); return; }
@@ -455,7 +455,9 @@ static void test_CreateMRUListLazyA(void) listA.hKey = hKey; listA.lpszSubKey = NULL; hMRU = pCreateMRUListLazyA(&listA, 0, 0, 0); - ok(hMRU == NULL, "Expected NULL handle, got %p\n", hMRU); + ok(hMRU == NULL || broken(hMRU != NULL), /* Win9x */ + "Expected NULL handle, got %p\n", hMRU); + if (hMRU) pFreeMRUList(hMRU); }
static void test_EnumMRUList(void)