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);