aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-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()