psapi/tests: Add todo_wine to a failing test.
This test was based on an implementation of K32EnumProcessModules() which was later rewritten. Signed-off-by: Zebediah Figura <zfigura@codeweavers.com> Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
parent
224e3f43e9
commit
a47332ae17
|
@ -229,6 +229,7 @@ todo_wine
|
||||||
SetLastError(0xdeadbeef);
|
SetLastError(0xdeadbeef);
|
||||||
ret = pEnumProcessModules(pi.hProcess, &hMod, sizeof(HMODULE), &cbNeeded);
|
ret = pEnumProcessModules(pi.hProcess, &hMod, sizeof(HMODULE), &cbNeeded);
|
||||||
ok(!ret, "got %d\n", ret);
|
ok(!ret, "got %d\n", ret);
|
||||||
|
todo_wine
|
||||||
ok(GetLastError() == ERROR_PARTIAL_COPY, "got error %u\n", GetLastError());
|
ok(GetLastError() == ERROR_PARTIAL_COPY, "got error %u\n", GetLastError());
|
||||||
|
|
||||||
TerminateProcess(pi.hProcess, 0);
|
TerminateProcess(pi.hProcess, 0);
|
||||||
|
|
Loading…
Reference in New Issue