mirror of
https://github.com/reactos/reactos.git
synced 2025-08-05 20:23:34 +00:00
[NTDLL_WINETEST]
- Skip exception test on WHS-Testbot... because problems... ROSTESTS-240 svn path=/trunk/; revision=72696
This commit is contained in:
parent
8e08a3b453
commit
bae3687192
1 changed files with 8 additions and 1 deletions
|
@ -1893,7 +1893,14 @@ static void test_vectored_continue_handler(void)
|
||||||
START_TEST(exception)
|
START_TEST(exception)
|
||||||
{
|
{
|
||||||
HMODULE hntdll = GetModuleHandleA("ntdll.dll");
|
HMODULE hntdll = GetModuleHandleA("ntdll.dll");
|
||||||
|
#ifdef __REACTOS__
|
||||||
|
if (!winetest_interactive &&
|
||||||
|
!strcmp(winetest_platform, "windows"))
|
||||||
|
{
|
||||||
|
skip("ROSTESTS-240: Skipping ntdll_winetest:exception because it hangs on WHS-Testbot. Set winetest_interactive to run it anyway.\n");
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
#endif
|
||||||
code_mem = VirtualAlloc(NULL, 65536, MEM_RESERVE | MEM_COMMIT, PAGE_EXECUTE_READWRITE);
|
code_mem = VirtualAlloc(NULL, 65536, MEM_RESERVE | MEM_COMMIT, PAGE_EXECUTE_READWRITE);
|
||||||
if(!code_mem) {
|
if(!code_mem) {
|
||||||
trace("VirtualAlloc failed\n");
|
trace("VirtualAlloc failed\n");
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue