[NTDLL_WINETEST]

- Skip LdrAddRefDll test to avoid crashing.
CORE-8102

svn path=/trunk/; revision=62974
This commit is contained in:
Thomas Faber 2014-04-26 10:36:24 +00:00
parent f48d45d73c
commit 26aca689ea

View file

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