aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/qml/qmllint/tst_qmllint.cpp
diff options
context:
space:
mode:
authorUlf Hermann <ulf.hermann@qt.io>2020-10-06 11:35:30 +0200
committerUlf Hermann <ulf.hermann@qt.io>2020-10-07 13:26:09 +0200
commitfe013bdbaecd9605ebf715215cef3cd82c1a712f (patch)
tree1853e6ec6eb8dec4cc97d0f02c3ed63d3af00b09 /tests/auto/qml/qmllint/tst_qmllint.cpp
parent3633047d812559fc91d6f6324c4677bd886ef7fd (diff)
qmllint: Read deprecated dependency specifications from qmltypes files
And produce a warning when doing so. Task-number: QTBUG-87164 Change-Id: I75eab97a37af1268a310e88e3ac6a625127a7f62 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, 2 insertions, 0 deletions
diff --git a/tests/auto/qml/qmllint/tst_qmllint.cpp b/tests/auto/qml/qmllint/tst_qmllint.cpp
index 1b77e941ab..0b78285c23 100644
--- a/tests/auto/qml/qmllint/tst_qmllint.cpp
+++ b/tests/auto/qml/qmllint/tst_qmllint.cpp
@@ -138,6 +138,8 @@ void TestQmllint::oldQmltypes()
{
const QString errors = runQmllint("oldQmltypes.qml", true);
QVERIFY(errors.contains(QStringLiteral("Warning: typeinfo not declared in qmldir file")));
+ QVERIFY(!errors.contains(QStringLiteral("Warning: QQuickItem was not found. Did you add all import paths?")));
+ QVERIFY(errors.contains(QStringLiteral("Warning: Found deprecated dependency specifications")));
}
void TestQmllint::dirtyQmlCode_data()