aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/qml/qjsengine/tst_qjsengine.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'tests/auto/qml/qjsengine/tst_qjsengine.cpp')
-rw-r--r--tests/auto/qml/qjsengine/tst_qjsengine.cpp4
1 files changed, 0 insertions, 4 deletions
diff --git a/tests/auto/qml/qjsengine/tst_qjsengine.cpp b/tests/auto/qml/qjsengine/tst_qjsengine.cpp
index 7c9f5b106c..fe467b5ac0 100644
--- a/tests/auto/qml/qjsengine/tst_qjsengine.cpp
+++ b/tests/auto/qml/qjsengine/tst_qjsengine.cpp
@@ -1541,16 +1541,12 @@ void tst_QJSEngine::automaticSemicolonInsertion()
}
{
QJSValue ret = eng.evaluate("n = 5; i = 0; do\n ++n; while (++i < 10); n");
- QEXPECT_FAIL("", "Known issue with automatic semicolon insertion. Regression from V8", Continue);
QVERIFY(ret.isNumber());
- QEXPECT_FAIL("", "Known issue with automatic semicolon insertion. Regression from V8", Continue);
QCOMPARE(ret.toInt(), 15);
}
{
QJSValue ret = eng.evaluate("n = 20; i = 0; do\n --n; while (++i < 10); n");
- QEXPECT_FAIL("", "Known issue with automatic semicolon insertion. Regression from V8", Continue);
QVERIFY(ret.isNumber());
- QEXPECT_FAIL("", "Known issue with automatic semicolon insertion. Regression from V8", Continue);
QCOMPARE(ret.toInt(), 10);
}