Module: wine Branch: master Commit: ec3cdaba4f018a87ef2fdfdb2e47a8b7811402f1 URL: https://source.winehq.org/git/wine.git/?a=commit;h=ec3cdaba4f018a87ef2fdfdb2...
Author: Alexandre Julliard julliard@winehq.org Date: Tue Jul 7 13:09:56 2020 +0200
ntdll/tests: Enable a few tests on all platforms.
Signed-off-by: Alexandre Julliard julliard@winehq.org
---
dlls/ntdll/tests/exception.c | 9 +++------ 1 file changed, 3 insertions(+), 6 deletions(-)
diff --git a/dlls/ntdll/tests/exception.c b/dlls/ntdll/tests/exception.c index 77fcf71ba1..f39e6f9794 100644 --- a/dlls/ntdll/tests/exception.c +++ b/dlls/ntdll/tests/exception.c @@ -3912,9 +3912,6 @@ START_TEST(exception) test_dpe_exceptions(); test_prot_fault(); test_thread_context(); - test_suspend_thread(); - test_suspend_process(); - test_unload_trace(); test_kiuserexceptiondispatcher();
/* Call of Duty WWII writes to BeingDebugged then closes an invalid handle, @@ -3957,9 +3954,6 @@ START_TEST(exception) test_prot_fault(); test_dpe_exceptions(); test_wow64_context(); - test_suspend_thread(); - test_suspend_process(); - test_unload_trace(); test_kiuserexceptiondispatcher();
if (pRtlAddFunctionTable && pRtlDeleteFunctionTable && pRtlInstallFunctionTableCallback && pRtlLookupFunctionEntry) @@ -3975,5 +3969,8 @@ START_TEST(exception)
#endif
+ test_suspend_thread(); + test_suspend_process(); + test_unload_trace(); VirtualFree(code_mem, 0, MEM_RELEASE); }