Module: wine Branch: stable Commit: cc4c22022c82408bc65f4c886cc6300e6bb45925 URL: http://source.winehq.org/git/wine.git/?a=commit;h=cc4c22022c82408bc65f4c886c...
Author: Sebastian Lackner sebastian@fds-team.de Date: Wed Feb 10 08:58:28 2016 +0100
kernel32/tests: Disable Windows version dependent test for pcPriClassBase.
Signed-off-by: Sebastian Lackner sebastian@fds-team.de Signed-off-by: Alexandre Julliard julliard@winehq.org (cherry picked from commit 748103663c6ec160c302f220c16fd53532689020) Signed-off-by: Michael Stefaniuc mstefani@winehq.org
---
dlls/kernel32/tests/process.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/dlls/kernel32/tests/process.c b/dlls/kernel32/tests/process.c index 1277af6..a9084f8 100644 --- a/dlls/kernel32/tests/process.c +++ b/dlls/kernel32/tests/process.c @@ -1131,7 +1131,7 @@ static void test_Toolhelp(void) okChildInt("Toolhelp", "th32DefaultHeapID", 0); okChildInt("Toolhelp", "th32ModuleID", 0); okChildInt("Toolhelp", "th32ParentProcessID", GetCurrentProcessId()); - todo_wine okChildInt("Toolhelp", "pcPriClassBase", 8); + /* pcPriClassBase differs between Windows versions (either 6 or 8) */ okChildInt("Toolhelp", "dwFlags", 0);
release_memory(); @@ -1202,7 +1202,7 @@ static void test_Toolhelp(void) okChildInt("Toolhelp", "th32DefaultHeapID", 0); okChildInt("Toolhelp", "th32ModuleID", 0); okChildInt("Toolhelp", "th32ParentProcessID", info.dwProcessId); - todo_wine okChildInt("Toolhelp", "pcPriClassBase", 8); + /* pcPriClassBase differs between Windows versions (either 6 or 8) */ okChildInt("Toolhelp", "dwFlags", 0);
release_memory();