Module: wine Branch: master Commit: 9182d5b541fc90837d1479ac38d0c52ec2730567 URL: http://source.winehq.org/git/wine.git/?a=commit;h=9182d5b541fc90837d1479ac38...
Author: André Hentschel nerv@dawncrow.de Date: Sat Oct 3 18:58:30 2015 +0200
psapi/tests: Remove bad test.
Signed-off-by: André Hentschel nerv@dawncrow.de
---
dlls/psapi/tests/psapi_main.c | 17 ----------------- 1 file changed, 17 deletions(-)
diff --git a/dlls/psapi/tests/psapi_main.c b/dlls/psapi/tests/psapi_main.c index bee0b9b..80e61fd 100644 --- a/dlls/psapi/tests/psapi_main.c +++ b/dlls/psapi/tests/psapi_main.c @@ -147,23 +147,6 @@ static void test_EnumProcessModules(void) ok(hMod == GetModuleHandleA(NULL), "hMod=%p GetModuleHandleA(NULL)=%p\n", hMod, GetModuleHandleA(NULL)); ok(cbNeeded % sizeof(hMod) == 0, "not a multiple of sizeof(HMODULE) cbNeeded=%d\n", cbNeeded); - /* Windows sometimes has a bunch of extra dlls, presumably brought in by - * aclayers.dll. - */ - if (cbNeeded < 4 * sizeof(HMODULE) || cbNeeded > 30 * sizeof(HMODULE)) - { - HMODULE hmods[100]; - int i; - ok(0, "cbNeeded=%d\n", cbNeeded); - - pEnumProcessModules(hpQV, hmods, sizeof(hmods), &cbNeeded); - for (i = 0 ; i < cbNeeded/sizeof(*hmods); i++) - { - char path[1024]; - GetModuleFileNameA(hmods[i], path, sizeof(path)); - trace("i=%d hmod=%p path=[%s]\n", i, hmods[i], path); - } - } }
static void test_GetModuleInformation(void)