aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/qml/qqmllanguage/data
diff options
context:
space:
mode:
authorLars Knoll <lars.knoll@digia.com>2012-12-11 06:59:37 +0100
committerThe Qt Project <gerrit-noreply@qt-project.org>2012-12-11 14:50:32 +0100
commit163b0056096a9d7eca2272fe7e969f99ecd1cab8 (patch)
treea2b8a779134991c4f7f69fa4c53019781d0e0b64 /tests/auto/qml/qqmllanguage/data
parent731139b512db04dcb52db4ef3c4c1ad51007e2c7 (diff)
Fix the test suite
We now fail when parsing octal numbers or escape sequences. This is ok according to the EcmaScript 5.1 spec. So remove all usages of these numbers or sequences. In addition delete an invalid test case that can't possibly be parsed correctly. V8 also chokes on it. Change-Id: I889de2810310f38206343d16175f9e31ddb44d30 Reviewed-by: Erik Verbruggen <erik.verbruggen@digia.com>
Diffstat (limited to 'tests/auto/qml/qqmllanguage/data')
-rw-r--r--tests/auto/qml/qqmllanguage/data/literals.qml7
1 files changed, 3 insertions, 4 deletions
diff --git a/tests/auto/qml/qqmllanguage/data/literals.qml b/tests/auto/qml/qqmllanguage/data/literals.qml
index 3a3e8461e4..9c6003dc40 100644
--- a/tests/auto/qml/qqmllanguage/data/literals.qml
+++ b/tests/auto/qml/qqmllanguage/data/literals.qml
@@ -2,7 +2,7 @@ import QtQuick 2.0
QtObject {
property variant n1: 0xFe32 // hex
- property variant n2: 015 // octal
+ property variant n2: 015
property variant n3: -4.2E11 // floating-point literals
property variant n4: .1e9
property variant n5: 3e-12
@@ -18,7 +18,6 @@ QtObject {
property variant c7: "\'"
property variant c8: "\""
property variant c9: "\\"
- property variant c10: "\251"
- property variant c11: "\xA9"
- property variant c12: "\u00A9" // unicode
+ property variant c10: "\xA9"
+ property variant c11: "\u00A9" // unicode
}