aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/qml/qmllint/tst_qmllint.cpp
diff options
context:
space:
mode:
authorUlf Hermann <ulf.hermann@qt.io>2021-01-20 12:17:42 +0100
committerUlf Hermann <ulf.hermann@qt.io>2021-01-20 13:33:52 +0100
commit3ae2a6a47c960d159e1110b434795fc69ecf3d80 (patch)
treebb703e7dc88eaedb2ac064a345008295eec20fd2 /tests/auto/qml/qmllint/tst_qmllint.cpp
parentbf573ad295fbc1eee9379bfaafcded293c4b81f4 (diff)
qmllint: Support extended types
Fixes: QTBUG-90448 Change-Id: I5fb6b3d9223ae95ca7e039c5b9139ed086052c29 Reviewed-by: Maximilian Goldstein <max.goldstein@qt.io> Reviewed-by: Fabian Kosmale <fabian.kosmale@qt.io>
Diffstat (limited to 'tests/auto/qml/qmllint/tst_qmllint.cpp')
-rw-r--r--tests/auto/qml/qmllint/tst_qmllint.cpp2
1 files changed, 0 insertions, 2 deletions
diff --git a/tests/auto/qml/qmllint/tst_qmllint.cpp b/tests/auto/qml/qmllint/tst_qmllint.cpp
index 0a2f8ed6b1..3f674fb5cc 100644
--- a/tests/auto/qml/qmllint/tst_qmllint.cpp
+++ b/tests/auto/qml/qmllint/tst_qmllint.cpp
@@ -317,7 +317,6 @@ void TestQmllint::cleanQmlCode()
{
QFETCH(QString, filename);
const QString warnings = runQmllint(filename, true);
- QEXPECT_FAIL("unknownBuiltinFont", "Broken extended support", Continue);
QVERIFY2(warnings.isEmpty(), qPrintable(warnings));
}
@@ -362,7 +361,6 @@ QString TestQmllint::runQmllint(const QString &fileToLint, bool shouldSucceed, c
return runQmllint(fileToLint, [&](QProcess &process) {
QVERIFY(process.waitForFinished());
QCOMPARE(process.exitStatus(), QProcess::NormalExit);
- QEXPECT_FAIL("unknownBuiltinFont", "Broken extended support", Continue);
if (shouldSucceed)
QCOMPARE(process.exitCode(), 0);
else