summaryrefslogtreecommitdiffstats
path: root/tests/auto
diff options
context:
space:
mode:
authorRoberto Raggi <roberto.raggi@nokia.com>2010-04-16 13:01:39 (GMT)
committerRoberto Raggi <roberto.raggi@nokia.com>2010-04-16 13:03:19 (GMT)
commite23a519366587cfc27ad3be88180692cb49e206f (patch)
tree185250545e3845ccf8c84a9807f95957f95b9e7f /tests/auto
parent86efad03a977763c900aaa0b634f64c109a27e4f (diff)
downloadQt-e23a519366587cfc27ad3be88180692cb49e206f.zip
Qt-e23a519366587cfc27ad3be88180692cb49e206f.tar.gz
Qt-e23a519366587cfc27ad3be88180692cb49e206f.tar.bz2
Recognize identifiers containing unicode escape sequences.
Task-number: QTBUG-8108 Reviewed-by: Olivier Goffart
Diffstat (limited to 'tests/auto')
-rw-r--r--tests/auto/declarative/parserstress/tst_parserstress.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/auto/declarative/parserstress/tst_parserstress.cpp b/tests/auto/declarative/parserstress/tst_parserstress.cpp
index 971496d..f61ca9f 100644
--- a/tests/auto/declarative/parserstress/tst_parserstress.cpp
+++ b/tests/auto/declarative/parserstress/tst_parserstress.cpp
@@ -131,8 +131,8 @@ void tst_parserstress::ecmascript()
QDeclarativeComponent component(&engine);
component.setData(qmlData, QUrl::fromLocalFile(SRCDIR + QString("/dummy.qml")));
QSet<QString> failingTests;
- failingTests << "uc-003.js" << "uc-005.js" << "regress-352044-02-n.js"
- << "regress-334158.js" << "regress-58274.js";
+ failingTests << "regress-352044-02-n.js"
+ << "regress-334158.js";
QFileInfo info(file);
foreach (const QString &failing, failingTests) {
if (info.fileName().endsWith(failing)) {