mirror of
https://github.com/reactos/reactos.git
synced 2025-04-05 05:01:03 +00:00
[GDI32] Do not 'hard-assert' during the font-unit-test.
This commit is contained in:
parent
4a96e0adbc
commit
7334567211
1 changed files with 23 additions and 11 deletions
|
@ -1340,7 +1340,7 @@ GetOutlineTextMetricsA(
|
|||
else
|
||||
output->otmpFullName = 0;
|
||||
|
||||
assert(left == 0);
|
||||
ASSERT(left == 0);
|
||||
|
||||
if(output != lpOTM)
|
||||
{
|
||||
|
@ -1730,6 +1730,13 @@ VOID DumpFamilyInfo(const FONTFAMILYINFO *Info, LONG Count)
|
|||
|
||||
VOID DoFontSystemUnittest(VOID)
|
||||
{
|
||||
#ifndef RTL_SOFT_ASSERT
|
||||
#define RTL_SOFT_ASSERT(exp) \
|
||||
(void)((!(exp)) ? \
|
||||
DbgPrint("%s(%d): Soft assertion failed\n Expression: %s\n", __FILE__, __LINE__, #exp), FALSE : TRUE)
|
||||
#define RTL_SOFT_ASSERT_defined
|
||||
#endif
|
||||
|
||||
LOGFONTW LogFont;
|
||||
FONTFAMILYINFO Info[4];
|
||||
UNICODE_STRING Str1, Str2;
|
||||
|
@ -1744,8 +1751,8 @@ VOID DoFontSystemUnittest(VOID)
|
|||
ret = NtGdiGetFontFamilyInfo(NULL, &LogFont, Info, &InfoCount);
|
||||
DPRINT1("ret: %ld, InfoCount: %ld\n", ret, InfoCount);
|
||||
DumpFamilyInfo(Info, ret);
|
||||
ASSERT(ret == RTL_NUMBER_OF(Info));
|
||||
ASSERT(InfoCount > 32);
|
||||
RTL_SOFT_ASSERT(ret == RTL_NUMBER_OF(Info));
|
||||
RTL_SOFT_ASSERT(InfoCount > 32);
|
||||
|
||||
/* L"Microsoft Sans Serif" ANSI_CHARSET */
|
||||
RtlZeroMemory(&LogFont, sizeof(LogFont));
|
||||
|
@ -1755,19 +1762,19 @@ VOID DoFontSystemUnittest(VOID)
|
|||
ret = NtGdiGetFontFamilyInfo(NULL, &LogFont, Info, &InfoCount);
|
||||
DPRINT1("ret: %ld, InfoCount: %ld\n", ret, InfoCount);
|
||||
DumpFamilyInfo(Info, ret);
|
||||
ASSERT(ret != -1);
|
||||
ASSERT(InfoCount > 0);
|
||||
ASSERT(InfoCount < 16);
|
||||
RTL_SOFT_ASSERT(ret != -1);
|
||||
RTL_SOFT_ASSERT(InfoCount > 0);
|
||||
RTL_SOFT_ASSERT(InfoCount < 16);
|
||||
|
||||
RtlInitUnicodeString(&Str1, Info[0].EnumLogFontEx.elfLogFont.lfFaceName);
|
||||
RtlInitUnicodeString(&Str2, L"Microsoft Sans Serif");
|
||||
ret = RtlCompareUnicodeString(&Str1, &Str2, TRUE);
|
||||
ASSERT(ret == 0);
|
||||
RTL_SOFT_ASSERT(ret == 0);
|
||||
|
||||
RtlInitUnicodeString(&Str1, Info[0].EnumLogFontEx.elfFullName);
|
||||
RtlInitUnicodeString(&Str2, L"Tahoma");
|
||||
ret = RtlCompareUnicodeString(&Str1, &Str2, TRUE);
|
||||
ASSERT(ret == 0);
|
||||
RTL_SOFT_ASSERT(ret == 0);
|
||||
|
||||
/* L"Non-Existent" DEFAULT_CHARSET */
|
||||
RtlZeroMemory(&LogFont, sizeof(LogFont));
|
||||
|
@ -1777,8 +1784,13 @@ VOID DoFontSystemUnittest(VOID)
|
|||
ret = NtGdiGetFontFamilyInfo(NULL, &LogFont, Info, &InfoCount);
|
||||
DPRINT1("ret: %ld, InfoCount: %ld\n", ret, InfoCount);
|
||||
DumpFamilyInfo(Info, ret);
|
||||
ASSERT(ret == 0);
|
||||
ASSERT(InfoCount == 0);
|
||||
RTL_SOFT_ASSERT(ret == 0);
|
||||
RTL_SOFT_ASSERT(InfoCount == 0);
|
||||
|
||||
#ifdef RTL_SOFT_ASSERT_defined
|
||||
#undef RTL_SOFT_ASSERT_defined
|
||||
#undef RTL_SOFT_ASSERT
|
||||
#endif
|
||||
}
|
||||
#endif
|
||||
|
||||
|
@ -1796,8 +1808,8 @@ CreateFontIndirectW(
|
|||
static BOOL bDidTest = FALSE;
|
||||
if (!bDidTest)
|
||||
{
|
||||
DoFontSystemUnittest();
|
||||
bDidTest = TRUE;
|
||||
DoFontSystemUnittest();
|
||||
}
|
||||
#endif
|
||||
if (lplf)
|
||||
|
|
Loading…
Reference in a new issue