aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/qml
diff options
context:
space:
mode:
Diffstat (limited to 'tests/auto/qml')
-rw-r--r--tests/auto/qml/qmllint/data/anchors3.qml2
-rw-r--r--tests/auto/qml/qmllint/data/nanchors3.qml2
-rw-r--r--tests/auto/qml/qmllint/tst_qmllint.cpp6
3 files changed, 7 insertions, 3 deletions
diff --git a/tests/auto/qml/qmllint/data/anchors3.qml b/tests/auto/qml/qmllint/data/anchors3.qml
index 290b19f98b..2728291651 100644
--- a/tests/auto/qml/qmllint/data/anchors3.qml
+++ b/tests/auto/qml/qmllint/data/anchors3.qml
@@ -1,6 +1,6 @@
import QtQuick 2.15
-Rectangle {
+Rectangle {
anchors.horizontalCenter: parent
anchors.verticalCenter: parent
}
diff --git a/tests/auto/qml/qmllint/data/nanchors3.qml b/tests/auto/qml/qmllint/data/nanchors3.qml
index 4ba987ed9c..0ac2b62e3d 100644
--- a/tests/auto/qml/qmllint/data/nanchors3.qml
+++ b/tests/auto/qml/qmllint/data/nanchors3.qml
@@ -1,6 +1,6 @@
import QtQuick 2.15
-Rectangle {
+Rectangle {
nanchors.horizontalCenter: parent
nanchors.verticalCenter: parent
}
diff --git a/tests/auto/qml/qmllint/tst_qmllint.cpp b/tests/auto/qml/qmllint/tst_qmllint.cpp
index da210e6abf..943092beca 100644
--- a/tests/auto/qml/qmllint/tst_qmllint.cpp
+++ b/tests/auto/qml/qmllint/tst_qmllint.cpp
@@ -199,6 +199,10 @@ void TestQmllint::dirtyQmlCode_data()
<< QStringLiteral("badEnumFromQtQml.qml")
<< QString("Warning: Property \"Linear123\" not found on type \"QQmlEasingEnums\"")
<< QString();
+ QTest::newRow("anchors3")
+ << QStringLiteral("anchors3.qml")
+ << QString()
+ << QString();
QTest::newRow("nanchors1")
<< QStringLiteral("nanchors1.qml")
<< QString()
@@ -224,6 +228,7 @@ void TestQmllint::dirtyQmlCode()
const QString output = runQmllint(filename, [&](QProcess &process) {
QVERIFY(process.waitForFinished());
QCOMPARE(process.exitStatus(), QProcess::NormalExit);
+ QEXPECT_FAIL("anchors3", "We don't see that QQuickItem cannot be assigned to QQuickAnchorLine", Abort);
QEXPECT_FAIL("nanchors1", "Invalid grouped properties are not detected", Abort);
QEXPECT_FAIL("nanchors2", "Invalid grouped properties are not detected", Abort);
QEXPECT_FAIL("nanchors3", "Invalid grouped properties are not detected", Abort);
@@ -268,7 +273,6 @@ void TestQmllint::cleanQmlCode_data()
QTest::newRow("enumFromQtQml") << QStringLiteral("enumFromQtQml.qml");
QTest::newRow("anchors1") << QStringLiteral("anchors1.qml");
QTest::newRow("anchors2") << QStringLiteral("anchors2.qml");
- QTest::newRow("anchors3") << QStringLiteral("anchors3.qml");
}
void TestQmllint::cleanQmlCode()