mirror of
https://github.com/reactos/wine.git
synced 2024-11-25 20:59:54 +00:00
ntdll/tests: Skip test if LdrAddRefDll is missing.
This commit is contained in:
parent
e011d0e3c7
commit
63092712c9
@ -1494,6 +1494,12 @@ static void test_LdrAddRefDll(void)
|
||||
NTSTATUS status;
|
||||
BOOL ret;
|
||||
|
||||
if (!pLdrAddRefDll)
|
||||
{
|
||||
win_skip( "LdrAddRefDll not supported\n" );
|
||||
return;
|
||||
}
|
||||
|
||||
mod = LoadLibraryA("comctl32.dll");
|
||||
ok(mod != NULL, "got %p\n", mod);
|
||||
ret = FreeLibrary(mod);
|
||||
|
Loading…
Reference in New Issue
Block a user