gdi32: Additional checking in the test for font creation with the OEM charset.

This commit is contained in:
Ilya Shpigor 2010-01-18 12:08:26 +03:00 committed by Alexandre Julliard
parent 3b67ad9bd4
commit 91a1321a97
1 changed files with 7 additions and 2 deletions

View File

@ -2848,7 +2848,7 @@ static void test_orientation(void)
static void test_oemcharset(void)
{
HDC hdc;
LOGFONTA lf;
LOGFONTA lf, clf;
HFONT hfont, old_hfont;
int charset;
@ -2863,7 +2863,12 @@ static void test_oemcharset(void)
charset = GetTextCharset(hdc);
todo_wine
ok(charset == OEM_CHARSET, "expected %d charset, got %d\n", OEM_CHARSET, charset);
SelectObject(hdc, old_hfont);
hfont = SelectObject(hdc, old_hfont);
GetObjectA(hfont, sizeof(clf), &clf);
ok(!lstrcmpA(clf.lfFaceName, lf.lfFaceName), "expected %s face name, got %s\n", lf.lfFaceName, clf.lfFaceName);
ok(clf.lfPitchAndFamily == lf.lfPitchAndFamily, "expected %x family, got %x\n", lf.lfPitchAndFamily, clf.lfPitchAndFamily);
ok(clf.lfCharSet == lf.lfCharSet, "expected %d charset, got %d\n", lf.lfCharSet, clf.lfCharSet);
ok(clf.lfHeight == lf.lfHeight, "expected %d height, got %d\n", lf.lfHeight, clf.lfHeight);
DeleteObject(hfont);
DeleteDC(hdc);
}