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:
Francois Gouget 2021-03-22 17:30:46 +01:00 committed by Alexandre Julliard
parent d831d9a4c5
commit c5bf1d2e19

View file

@ -42,7 +42,7 @@ static BOOL init_functions(void)
HMODULE hModule = LoadLibraryA("msvcrtd.dll");
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;
}