aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/qml/parserstress
diff options
context:
space:
mode:
Diffstat (limited to 'tests/auto/qml/parserstress')
-rw-r--r--tests/auto/qml/parserstress/tst_parserstress.cpp7
1 files changed, 7 insertions, 0 deletions
diff --git a/tests/auto/qml/parserstress/tst_parserstress.cpp b/tests/auto/qml/parserstress/tst_parserstress.cpp
index afa58f4437..15b3ff56b6 100644
--- a/tests/auto/qml/parserstress/tst_parserstress.cpp
+++ b/tests/auto/qml/parserstress/tst_parserstress.cpp
@@ -94,6 +94,13 @@ void tst_parserstress::ecmascript_data()
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;
QTest::newRow(qPrintable(file)) << file;
}
}