aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/declarative/qdeclarativeecmascript/data/v8bindingException.qml
diff options
context:
space:
mode:
Diffstat (limited to 'tests/auto/declarative/qdeclarativeecmascript/data/v8bindingException.qml')
-rw-r--r--tests/auto/declarative/qdeclarativeecmascript/data/v8bindingException.qml21
1 files changed, 0 insertions, 21 deletions
diff --git a/tests/auto/declarative/qdeclarativeecmascript/data/v8bindingException.qml b/tests/auto/declarative/qdeclarativeecmascript/data/v8bindingException.qml
deleted file mode 100644
index ff203e23e3..0000000000
--- a/tests/auto/declarative/qdeclarativeecmascript/data/v8bindingException.qml
+++ /dev/null
@@ -1,21 +0,0 @@
-import QtQuick 2.0
-
-// This test uses a multi-line string which has \r-terminated
-// string fragments. The expression rewriter deliberately doesn't
-// handle \r-terminated string fragments (see QTBUG-24064) and thus
-// this test ensures that we don't crash when we encounter a
-// non-compilable binding such as this one.
-
-Item {
- id: root
-
- Component {
- id: comp
- Text {
- property var value: ","
- text: 'multi line ' + value + 'str ings'
- }
- }
-
- Component.onCompleted: comp.createObject(root, { "value": undefined })
-}