Reenable temporarily skipped QML tests
authorPeter Varga <pvarga@inf.u-szeged.hu>
Wed, 9 Jan 2013 13:11:55 +0000 (14:11 +0100)
committerThe Qt Project <gerrit-noreply@qt-project.org>
Wed, 9 Jan 2013 14:57:01 +0000 (15:57 +0100)
Change-Id: I1e57b0e39c539648602cc480e296db6c6948ff39
Reviewed-by: Simon Hausmann <simon.hausmann@digia.com>
tests/auto/qml/qjsengine/tst_qjsengine.cpp
tests/auto/qml/qqmlecmascript/tst_qqmlecmascript.cpp

index bbde5f4..5c27c95 100644 (file)
@@ -2226,8 +2226,6 @@ void tst_QJSEngine::jsContinueInSwitch()
 
 void tst_QJSEngine::jsShadowReadOnlyPrototypeProperty()
 {
-    QSKIP("Temporarily skip this test case until the next V8 update is landed into QtJSBackend.");
-
     QJSEngine eng;
     QVERIFY(eng.evaluate("o = {}; o.__proto__ = parseInt; o.length").isNumber());
     QVERIFY(eng.evaluate("o.length = 123; o.length").toInt() != 123);
index a4cd325..8624fef 100644 (file)
@@ -1779,8 +1779,6 @@ Test file/lineNumbers for inline functions.
 */
 void tst_qqmlecmascript::functionErrors()
 {
-    QSKIP("Temporarily skip this test case until the next V8 update is landed into QtJSBackend.");
-
     QQmlComponent component(&engine, testFileUrl("functionErrors.qml"));
     QString url = component.url().toString();
 
@@ -4056,8 +4054,6 @@ void tst_qqmlecmascript::scarceResources_other()
     /* These tests require knowledge of state, since we test values after
        performing signal or function invocation. */
 
-    QSKIP("Temporarily skip this test case until the next V8 update is landed into QtJSBackend.");
-
     QPixmap origPixmap(100, 100);
     origPixmap.fill(Qt::blue);
     QString srp_name, expectedWarning;