From bae36871929f1f8d0bf916b56a1ecac6667ed93f Mon Sep 17 00:00:00 2001 From: Thomas Faber Date: Fri, 16 Sep 2016 09:33:54 +0000 Subject: [PATCH] [NTDLL_WINETEST] - Skip exception test on WHS-Testbot... because problems... ROSTESTS-240 svn path=/trunk/; revision=72696 --- rostests/winetests/ntdll/exception.c | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/rostests/winetests/ntdll/exception.c b/rostests/winetests/ntdll/exception.c index 2455e1b6f15..4bd400bb152 100644 --- a/rostests/winetests/ntdll/exception.c +++ b/rostests/winetests/ntdll/exception.c @@ -1893,7 +1893,14 @@ static void test_vectored_continue_handler(void) START_TEST(exception) { 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); if(!code_mem) { trace("VirtualAlloc failed\n");