qmltest: Remove obsolete skipAll function.
authorJason McDonald <jason.mcdonald@nokia.com>
Mon, 13 Feb 2012 03:30:26 +0000 (13:30 +1000)
committerQt by Nokia <qt-info@nokia.com>
Mon, 13 Feb 2012 05:28:25 +0000 (06:28 +0100)
The skipAll function has been left in qmltest for a transitional period
to give upstream projects time to catch up with the removal of the
function from the API.  This transitional period is now finished.

Task-number: QTBUG-21652
Change-Id: I10173ef9a676b804e6cf2e7f6e9a82f7b7b4c078
Reviewed-by: Rohan McGovern <rohan.mcgovern@nokia.com>
src/imports/testlib/TestCase.qml

index 1e08686..1f96f28 100644 (file)
@@ -312,12 +312,6 @@ Item {
         throw new Error("QtQuickTest::skip")
     }
 
-    function skipAll(msg) {
-        msg = "The skipAll function is no longer available. Please update this test by changing skipAll to skip."
-        qtest_results.fail(msg, util.callerFile(), util.callerLine())
-        throw new Error("QtQuickTest::skip")
-    }
-
     function expectFail(tag, msg) {
         if (tag === undefined) {
             warn("tag argument missing from expectFail()")