From e6f0664b3993ce39114a507a847ae8c5bea42e62 Mon Sep 17 00:00:00 2001 From: Amine Khaldi Date: Tue, 9 Aug 2011 12:10:04 +0000 Subject: [PATCH] [NTDLL_WINETEST] * Skip ntdll exception tests until bug 6404 is fixed. svn path=/trunk/; revision=53150 --- rostests/winetests/ntdll/exception.c | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/rostests/winetests/ntdll/exception.c b/rostests/winetests/ntdll/exception.c index 20369f90f73..1b2e2132b77 100644 --- a/rostests/winetests/ntdll/exception.c +++ b/rostests/winetests/ntdll/exception.c @@ -1390,6 +1390,12 @@ static void test_virtual_unwind(void) START_TEST(exception) { + + if(!winetest_interactive) { + skip("ReactOS Bug 6404: ntdll_winetest:exception enters kdbg on the int3 exception test.\n"); + return; + } + HMODULE hntdll = GetModuleHandleA("ntdll.dll"); code_mem = VirtualAlloc(NULL, 65536, MEM_RESERVE | MEM_COMMIT, PAGE_EXECUTE_READWRITE);