[PATCH] psapi/tests: Add todo_wine to a failing test.

Zebediah Figura zfigura at codeweavers.com
Fri Jun 22 09:46:26 CDT 2018


This test was based on an implementation of K32EnumProcessModules() which was later rewritten.

Signed-off-by: Zebediah Figura <zfigura at codeweavers.com>
---
 dlls/psapi/tests/psapi_main.c | 1 +
 1 file changed, 1 insertion(+)

diff --git a/dlls/psapi/tests/psapi_main.c b/dlls/psapi/tests/psapi_main.c
index 0ff212c..ec74716 100644
--- a/dlls/psapi/tests/psapi_main.c
+++ b/dlls/psapi/tests/psapi_main.c
@@ -229,6 +229,7 @@ todo_wine
         SetLastError(0xdeadbeef);
         ret = pEnumProcessModules(pi.hProcess, &hMod, sizeof(HMODULE), &cbNeeded);
         ok(!ret, "got %d\n", ret);
+todo_wine
         ok(GetLastError() == ERROR_PARTIAL_COPY, "got error %u\n", GetLastError());
 
         TerminateProcess(pi.hProcess, 0);
-- 
2.7.4




More information about the wine-devel mailing list