From 26aca689ea96ab932b79ae595a771d6676cf3b99 Mon Sep 17 00:00:00 2001 From: Thomas Faber Date: Sat, 26 Apr 2014 10:36:24 +0000 Subject: [PATCH] [NTDLL_WINETEST] - Skip LdrAddRefDll test to avoid crashing. CORE-8102 svn path=/trunk/; revision=62974 --- rostests/winetests/ntdll/rtl.c | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/rostests/winetests/ntdll/rtl.c b/rostests/winetests/ntdll/rtl.c index 6eb6de3cb04..917bc29df8d 100755 --- a/rostests/winetests/ntdll/rtl.c +++ b/rostests/winetests/ntdll/rtl.c @@ -1500,6 +1500,14 @@ static void test_LdrAddRefDll(void) return; } +#ifdef __REACTOS__ + if (!winetest_interactive) + { + skip("Skipping LdrAddRefDll tests. See CORE-8102\n"); + return; + } +#endif + mod = LoadLibraryA("comctl32.dll"); ok(mod != NULL, "got %p\n", mod); ret = FreeLibrary(mod);