aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto
diff options
context:
space:
mode:
authorErik Verbruggen <erik.verbruggen@me.com>2013-12-17 12:30:11 +0100
committerThe Qt Project <gerrit-noreply@qt-project.org>2014-01-02 21:47:04 +0100
commitd54fb6804b261a26a2b689d2e7e5157b545e3c86 (patch)
treeff48546bede4702598615a44f00a58839b8992a8 /tests/auto
parent2f3e7f904f9adf4125d5b7002293439da438fb15 (diff)
V4: re-enable test cases disabled for QTBUG-34047
Task-number: QTBUG-34047 Change-Id: Idcce254f3594e1f7021705704dbe6a2330aa7e65 Reviewed-by: Lars Knoll <lars.knoll@digia.com>
Diffstat (limited to 'tests/auto')
-rw-r--r--tests/auto/qml/parserstress/tst_parserstress.cpp10
1 files changed, 1 insertions, 9 deletions
diff --git a/tests/auto/qml/parserstress/tst_parserstress.cpp b/tests/auto/qml/parserstress/tst_parserstress.cpp
index 15b3ff56b6..07d02055c2 100644
--- a/tests/auto/qml/parserstress/tst_parserstress.cpp
+++ b/tests/auto/qml/parserstress/tst_parserstress.cpp
@@ -93,16 +93,8 @@ void tst_parserstress::ecmascript_data()
QStringList files = findJSFiles(dir);
QTest::addColumn<QString>("file");
- foreach (const QString &file, files) {
- // Skip, QTBUG-34047
- if (file.endsWith(QStringLiteral("tests/ecma_3/Statements/regress-324650.js")))
- continue;
- if (file.endsWith(QStringLiteral("tests/ecma_3/Statements/regress-74474-002.js")))
- continue;
- if (file.endsWith(QStringLiteral("tests/ecma_3/Statements/regress-74474-003.js")))
- continue;
+ foreach (const QString &file, files)
QTest::newRow(qPrintable(file)) << file;
- }
}
void tst_parserstress::ecmascript()