aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMitch Curtis <mitch.curtis@qt.io>2018-09-20 11:30:31 +0200
committerLiang Qi <liang.qi@qt.io>2018-09-26 05:29:50 +0000
commit63814ff909d9eeb3bf88a56a82e4fa01ef668db9 (patch)
tree9536d60bdc3241cef4eebb7eaa37226df7fb36d0
parent9f94115e5207863e1a8ef35b59ceef50ae1dabce (diff)
Skip tst_font::systemFont()
The qmlClearTypeRegistrations() call causes a crash and it's not clear why. Until we can fix it, skip it so that other changes can get in. It should be skipped rather than blacklisted as it shouldn't be run at all. Task-number: QTBUG-70063 Change-Id: I1ff47e034f121014370bbf9d65e8ac68769a8d31 Reviewed-by: Liang Qi <liang.qi@qt.io>
-rw-r--r--tests/auto/font/tst_font.cpp2
1 files changed, 2 insertions, 0 deletions
diff --git a/tests/auto/font/tst_font.cpp b/tests/auto/font/tst_font.cpp
index 84f6334b..cd41be91 100644
--- a/tests/auto/font/tst_font.cpp
+++ b/tests/auto/font/tst_font.cpp
@@ -85,6 +85,8 @@ static QFont testFont()
void tst_font::systemFont()
{
+ QSKIP("QTBUG-70063: qmlClearTypeRegistrations() call causes crash");
+
const QFont *originalSystemFont = QGuiApplicationPrivate::platformTheme()->font(QPlatformTheme::SystemFont);
if (!originalSystemFont)
QSKIP("Cannot test the system font on a minimal platform");