Expect fail broken font family from QFontDatabase on OS X 10.8
Change-Id: I682d58350427975a692b523095c1c38e1891663f Reviewed-by: Tor Arne Vestbø <tor.arne.vestbo@digia.com>bb10
parent
9a061a0a2c
commit
4ca4fb93f6
|
|
@ -667,6 +667,15 @@ void tst_QFont::defaultFamily_data()
|
|||
|
||||
void tst_QFont::defaultFamily()
|
||||
{
|
||||
#if defined(Q_OS_MAC)
|
||||
if (QSysInfo::MacintoshVersion == QSysInfo::MV_10_8) {
|
||||
QEXPECT_FAIL("serif", "See QTBUG-32834", Continue);
|
||||
QEXPECT_FAIL("monospace", "See QTBUG-32834", Continue);
|
||||
QEXPECT_FAIL("cursive", "See QTBUG-32834", Continue);
|
||||
QEXPECT_FAIL("fantasy", "See QTBUG-32834", Continue);
|
||||
}
|
||||
#endif
|
||||
|
||||
QFETCH(QFont::StyleHint, styleHint);
|
||||
QFETCH(QStringList, acceptableFamilies);
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue