ntdll/tests: Run crashing i386 exception tests as the last step.

This commit is contained in:
Sebastian Lackner 2014-06-19 10:06:36 +02:00 committed by Alexandre Julliard
parent 3aa62498da
commit 457f6af057
1 changed files with 3 additions and 3 deletions

View File

@ -1767,13 +1767,14 @@ START_TEST(exception)
}
test_unwind();
test_prot_fault();
test_exceptions();
test_rtlraiseexception();
test_outputdebugstring();
test_debugger();
test_simd_exceptions();
test_fpu_exceptions();
test_dpe_exceptions();
test_prot_fault();
#elif defined(__x86_64__)
pRtlAddFunctionTable = (void *)GetProcAddress( hntdll,
@ -1785,6 +1786,7 @@ START_TEST(exception)
pRtlLookupFunctionEntry = (void *)GetProcAddress( hntdll,
"RtlLookupFunctionEntry" );
test_outputdebugstring();
test_virtual_unwind();
if (pRtlAddFunctionTable && pRtlDeleteFunctionTable && pRtlInstallFunctionTableCallback && pRtlLookupFunctionEntry)
@ -1794,7 +1796,5 @@ START_TEST(exception)
#endif
test_outputdebugstring();
VirtualFree(code_mem, 0, MEM_FREE);
}