diff options
author | Roberto Raggi <roberto.raggi@nokia.com> | 2010-04-21 11:56:48 (GMT) |
---|---|---|
committer | Roberto Raggi <roberto.raggi@nokia.com> | 2010-04-21 12:03:16 (GMT) |
commit | 94cca4856d4a023a6f79ddc290c4495803557e93 (patch) | |
tree | 890f45417653f82c7243683521847e05ac6b24d0 /tests/auto/declarative | |
parent | 38b8940413fc83d2e641be580369125709ffa8e1 (diff) | |
download | Qt-94cca4856d4a023a6f79ddc290c4495803557e93.zip Qt-94cca4856d4a023a6f79ddc290c4495803557e93.tar.gz Qt-94cca4856d4a023a6f79ddc290c4495803557e93.tar.bz2 |
Fix parsing of regular expression literals.
Recognize regular expression classes and escape sequences.
Task-number: QTBUG-8108
Reviewed-by: Olivier Goffart
Diffstat (limited to 'tests/auto/declarative')
-rw-r--r-- | tests/auto/declarative/parserstress/tst_parserstress.cpp | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/tests/auto/declarative/parserstress/tst_parserstress.cpp b/tests/auto/declarative/parserstress/tst_parserstress.cpp index f61ca9f..f1e9c6e 100644 --- a/tests/auto/declarative/parserstress/tst_parserstress.cpp +++ b/tests/auto/declarative/parserstress/tst_parserstress.cpp @@ -131,8 +131,7 @@ void tst_parserstress::ecmascript() QDeclarativeComponent component(&engine); component.setData(qmlData, QUrl::fromLocalFile(SRCDIR + QString("/dummy.qml"))); QSet<QString> failingTests; - failingTests << "regress-352044-02-n.js" - << "regress-334158.js"; + failingTests << "regress-352044-02-n.js"; QFileInfo info(file); foreach (const QString &failing, failingTests) { if (info.fileName().endsWith(failing)) { |