Skip to content

Commit

Permalink
psapi/tests: Add todo_wine to a failing test.
Browse files Browse the repository at this point in the history
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>
  • Loading branch information
Zebediah Figura authored and julliard committed Jun 22, 2018
1 parent 224e3f4 commit a47332a
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions dlls/psapi/tests/psapi_main.c
Expand Up @@ -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);
Expand Down

0 comments on commit a47332a

Please sign in to comment.