ntdll/tests: Run crashing i386 exception tests as the last step.
This commit is contained in:
parent
3aa62498da
commit
457f6af057
|
@ -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);
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue