Commit 91a1321a authored by Ilya Shpigor's avatar Ilya Shpigor Committed by Alexandre Julliard

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

parent 3b67ad9b
......@@ -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);
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment