aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorJason McDonald <jason.mcdonald@nokia.com>2012-02-13 13:30:26 +1000
committerQt by Nokia <qt-info@nokia.com>2012-02-13 06:28:25 +0100
commita979bf5a4cb7aeb5b690957d77b84c9dc385d6d9 (patch)
tree148209078b180976ba9cdd0a59870b35ba08f3c3 /src
parent5572b4c9ed6041d23c79c9cd93d196653a690a43 (diff)
qmltest: Remove obsolete skipAll function.
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>
Diffstat (limited to 'src')
-rw-r--r--src/imports/testlib/TestCase.qml6
1 files changed, 0 insertions, 6 deletions
diff --git a/src/imports/testlib/TestCase.qml b/src/imports/testlib/TestCase.qml
index 1e08686b61..1f96f28533 100644
--- a/src/imports/testlib/TestCase.qml
+++ b/src/imports/testlib/TestCase.qml
@@ -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()")