summaryrefslogtreecommitdiff
path: root/tests/auto/xmlpatternsxqts
diff options
context:
space:
mode:
authorJason McDonald <jason.mcdonald@nokia.com>2011-10-19 13:57:18 +1000
committerQt by Nokia <qt-info@nokia.com>2011-10-21 04:41:29 +0200
commit694ba70a5bf6ea042cc8d6f8cda4fa6b3f9ea26e (patch)
tree9ad0b7c7b454944b3375c5e759f9d85973ede897 /tests/auto/xmlpatternsxqts
parenteea5f7496caa46a40fd609d13a327ae9c887e67e (diff)
downloadqtxmlpatterns-694ba70a5bf6ea042cc8d6f8cda4fa6b3f9ea26e.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: I8f5d6488637acd5e38d3c8dd418ff3776b2f3778 Reviewed-by: Rohan McGovern <rohan.mcgovern@nokia.com>
Diffstat (limited to 'tests/auto/xmlpatternsxqts')
-rw-r--r--tests/auto/xmlpatternsxqts/tst_suitetest.cpp4
-rw-r--r--tests/auto/xmlpatternsxqts/tst_xmlpatternsxqts.cpp2
2 files changed, 3 insertions, 3 deletions
diff --git a/tests/auto/xmlpatternsxqts/tst_suitetest.cpp b/tests/auto/xmlpatternsxqts/tst_suitetest.cpp
index 53541ac..ab48eca 100644
--- a/tests/auto/xmlpatternsxqts/tst_suitetest.cpp
+++ b/tests/auto/xmlpatternsxqts/tst_suitetest.cpp
@@ -79,7 +79,7 @@ void tst_SuiteTest::initTestCase()
void tst_SuiteTest::runTestSuite() const
{
if(m_abortRun)
- QSKIP("The test suite is not available, no tests are run.", SkipAll);
+ QSKIP("The test suite is not available, no tests are run.");
QString errMsg;
const QFileInfo fi(m_catalogPath);
@@ -121,7 +121,7 @@ void tst_SuiteTest::runTestSuite() const
void tst_SuiteTest::checkTestSuiteResult() const
{
if(m_abortRun)
- QSKIP("This test takes too long time to run on the majority of platforms.", SkipAll);
+ QSKIP("This test takes too long time to run on the majority of platforms.");
typedef QList<QFileInfo> QFileInfoList;
diff --git a/tests/auto/xmlpatternsxqts/tst_xmlpatternsxqts.cpp b/tests/auto/xmlpatternsxqts/tst_xmlpatternsxqts.cpp
index adb1f28..11bdc1b 100644
--- a/tests/auto/xmlpatternsxqts/tst_xmlpatternsxqts.cpp
+++ b/tests/auto/xmlpatternsxqts/tst_xmlpatternsxqts.cpp
@@ -66,7 +66,7 @@ tst_XmlPatternsXQTS::tst_XmlPatternsXQTS() : tst_SuiteTest(tst_SuiteTest::XQuery
void tst_XmlPatternsXQTS::catalogPath(QString &write) const
{
if(dontRun())
- QSKIP("This test takes too long time to run on the majority of platforms.", SkipAll);
+ QSKIP("This test takes too long time to run on the majority of platforms.");
QProcess p4;