Author: mjansen Date: Sun Jun 11 08:51:36 2017 New Revision: 74996
URL: http://svn.reactos.org/svn/reactos?rev=74996&view=rev Log: [WIN32KNT_APITEST] Do not assert on the result of an unimplemented function.
Modified: trunk/rostests/apitests/win32nt/ntgdi/NtGdiEnumFontOpen.c
Modified: trunk/rostests/apitests/win32nt/ntgdi/NtGdiEnumFontOpen.c URL: http://svn.reactos.org/svn/reactos/trunk/rostests/apitests/win32nt/ntgdi/NtG... ============================================================================== --- trunk/rostests/apitests/win32nt/ntgdi/NtGdiEnumFontOpen.c [iso-8859-1] (original) +++ trunk/rostests/apitests/win32nt/ntgdi/NtGdiEnumFontOpen.c [iso-8859-1] Sun Jun 11 08:51:36 2017 @@ -19,7 +19,9 @@ // FIXME: We should load the font first
idEnum = NtGdiEnumFontOpen(hDC, 2, 0, 32, L"Courier", ANSI_CHARSET, &ulCount); - ASSERT(idEnum != 0); + TEST(idEnum != 0); + if (idEnum == 0) + return;
/* we should have a gdi handle here */ TEST(GDI_HANDLE_GET_TYPE(idEnum) == GDI_OBJECT_TYPE_ENUMFONT);