aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto
diff options
context:
space:
mode:
Diffstat (limited to 'tests/auto')
-rw-r--r--tests/auto/qml/qmllint/data/groupedScope.qml7
-rw-r--r--tests/auto/qml/qmllint/tst_qmllint.cpp1
2 files changed, 8 insertions, 0 deletions
diff --git a/tests/auto/qml/qmllint/data/groupedScope.qml b/tests/auto/qml/qmllint/data/groupedScope.qml
new file mode 100644
index 0000000000..40f9b41be8
--- /dev/null
+++ b/tests/auto/qml/qmllint/data/groupedScope.qml
@@ -0,0 +1,7 @@
+import QtQuick 2.0
+
+Rectangle {
+ border.width: 1
+
+ gradient: Gradient {}
+}
diff --git a/tests/auto/qml/qmllint/tst_qmllint.cpp b/tests/auto/qml/qmllint/tst_qmllint.cpp
index 54e0adee51..8a07391ed0 100644
--- a/tests/auto/qml/qmllint/tst_qmllint.cpp
+++ b/tests/auto/qml/qmllint/tst_qmllint.cpp
@@ -364,6 +364,7 @@ void TestQmllint::cleanQmlCode_data()
QTest::newRow("overridescript") << QStringLiteral("overridescript.qml");
QTest::newRow("multiExtension") << QStringLiteral("multiExtension.qml");
QTest::newRow("segFault") << QStringLiteral("SegFault.qml");
+ QTest::newRow("grouped scope failure") << QStringLiteral("groupedScope.qml");
}
void TestQmllint::cleanQmlCode()