Commit 63092712 authored by Alexandre Julliard's avatar Alexandre Julliard

ntdll/tests: Skip test if LdrAddRefDll is missing.

parent e011d0e3
......@@ -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);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment