aboutsummaryrefslogtreecommitdiffstats
path: root/tests
diff options
context:
space:
mode:
Diffstat (limited to 'tests')
-rw-r--r--tests/auto/qml/qmlformat/data/verbatimString.formatted.qml3
-rw-r--r--tests/auto/qml/qmlformat/data/verbatimString.qml3
-rw-r--r--tests/auto/qml/qmlmin/tst_qmlmin.cpp3
3 files changed, 9 insertions, 0 deletions
diff --git a/tests/auto/qml/qmlformat/data/verbatimString.formatted.qml b/tests/auto/qml/qmlformat/data/verbatimString.formatted.qml
index fa7fbbe32b..84abe38f88 100644
--- a/tests/auto/qml/qmlformat/data/verbatimString.formatted.qml
+++ b/tests/auto/qml/qmlformat/data/verbatimString.formatted.qml
@@ -1,4 +1,7 @@
Item {
property string verbatim1: 'A "verbatim" string!'
property string verbatim2: "A 'verbatim' string\u2757"
+ property string verbatim3: `400 + 300 is ${400 + 300}.
+
+mutliline`
}
diff --git a/tests/auto/qml/qmlformat/data/verbatimString.qml b/tests/auto/qml/qmlformat/data/verbatimString.qml
index 15b080a87b..fa16b97dca 100644
--- a/tests/auto/qml/qmlformat/data/verbatimString.qml
+++ b/tests/auto/qml/qmlformat/data/verbatimString.qml
@@ -1,4 +1,7 @@
Item {
property string verbatim1: 'A "verbatim" string!'
property string verbatim2: "A 'verbatim' string\u2757"
+property string verbatim3: `400 + 300 is ${400 + 300}.
+
+mutliline`
} \ No newline at end of file
diff --git a/tests/auto/qml/qmlmin/tst_qmlmin.cpp b/tests/auto/qml/qmlmin/tst_qmlmin.cpp
index 24e926ffb3..cc028d979f 100644
--- a/tests/auto/qml/qmlmin/tst_qmlmin.cpp
+++ b/tests/auto/qml/qmlmin/tst_qmlmin.cpp
@@ -137,6 +137,9 @@ void tst_qmlmin::initTestCase()
invalidFiles << "tests/auto/qml/qqmllanguage/data/requiredProperties.2.qml";
// generatorFunction.qml is not invalid per se, but the minifier cannot handle yield statements
invalidFiles << "tests/auto/qml/qqmlecmascript/data/generatorFunction.qml";
+ // minifer can't handle template strings properly
+ invalidFiles << "tests/auto/qml/qmlformat/data/verbatimString.qml";
+ invalidFiles << "tests/auto/qml/qmlformat/data/verbatimString.formatted.qml";
#endif
}