msvcrtd/tests: Missing the library should be a win_skip().
Wine is supposed to have msvcrtd and we want its absence to be recorded as a skip either way. Signed-off-by: Francois Gouget <fgouget@codeweavers.com> Signed-off-by: Piotr Caban <piotr@codeweavers.com> Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
parent
d831d9a4c5
commit
c5bf1d2e19
|
@ -42,7 +42,7 @@ static BOOL init_functions(void)
|
||||||
HMODULE hModule = LoadLibraryA("msvcrtd.dll");
|
HMODULE hModule = LoadLibraryA("msvcrtd.dll");
|
||||||
|
|
||||||
if (!hModule) {
|
if (!hModule) {
|
||||||
trace("LoadLibraryA failed to load msvcrtd.dll with GLE=%d\n", GetLastError());
|
win_skip("LoadLibraryA failed to load msvcrtd.dll with GLE=%d\n", GetLastError());
|
||||||
return FALSE;
|
return FALSE;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue