summaryrefslogtreecommitdiff
path: root/tests/auto/qscriptv8testsuite/tst_qscriptv8testsuite.cpp
diff options
context:
space:
mode:
authorJason McDonald <jason.mcdonald@nokia.com>2011-10-19 14:29:03 +1000
committerQt by Nokia <qt-info@nokia.com>2011-10-21 09:49:26 +0200
commit62c9050dbe9313dfe090839b4ececf6608d49143 (patch)
treeaa868d1447edc45f2e6eb4e288c3690bed995ab7 /tests/auto/qscriptv8testsuite/tst_qscriptv8testsuite.cpp
parentdd760b017a561b4c5a005c9b2f4e737debeb65a3 (diff)
downloadqtscript-62c9050dbe9313dfe090839b4ececf6608d49143.tar.gz
Remove SkipMode parameter from QSKIP.
The SkipMode parameter has been removed from the API in qtbase, so it must be in all calls to QSKIP. Task-number: QTBUG-21851, QTBUG-21652 Change-Id: I8579b648437eaa9d4c81deb7ed581d88af11d5b5 Reviewed-by: Rohan McGovern <rohan.mcgovern@nokia.com>
Diffstat (limited to 'tests/auto/qscriptv8testsuite/tst_qscriptv8testsuite.cpp')
-rw-r--r--tests/auto/qscriptv8testsuite/tst_qscriptv8testsuite.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/auto/qscriptv8testsuite/tst_qscriptv8testsuite.cpp b/tests/auto/qscriptv8testsuite/tst_qscriptv8testsuite.cpp
index b02d3ab..caaaa74 100644
--- a/tests/auto/qscriptv8testsuite/tst_qscriptv8testsuite.cpp
+++ b/tests/auto/qscriptv8testsuite/tst_qscriptv8testsuite.cpp
@@ -135,7 +135,7 @@ void tst_QScriptV8TestSuite::runTestFunction(int testIndex)
QString excludeMessage;
if (isExcludedTest(name, &excludeMessage)) {
- QTest::qSkip(excludeMessage.toLatin1(), QTest::SkipAll, path.toLatin1(), -1);
+ QTest::qSkip(excludeMessage.toLatin1(), path.toLatin1(), -1);
return;
}