summaryrefslogtreecommitdiffstats
path: root/tests/auto/widgets/util/qundogroup
diff options
context:
space:
mode:
authorJason McDonald <jason.mcdonald@nokia.com>2011-10-19 12:53:13 +1000
committerQt by Nokia <qt-info@nokia.com>2011-10-21 01:20:29 +0200
commit27f9f136f7e39b5d612bc02f7ff8778ab424c07d (patch)
tree3c72358e3d1e42fbf0c386365e76db259e180bd7 /tests/auto/widgets/util/qundogroup
parent016cd01846539404a0eff1e3823fa2206fe2c9a9 (diff)
Remove SkipMode parameter from QSKIP calls.
The previous commit removed SkipMode from the testlib APi. This commit removes the parameter from all calls to QSKIP. Task-number: QTBUG-21851, QTBUG-21652 Change-Id: I21c0ee6731c1bc6ac6d962590d9b31d7459dfbc5 Reviewed-by: Rohan McGovern <rohan.mcgovern@nokia.com>
Diffstat (limited to 'tests/auto/widgets/util/qundogroup')
-rw-r--r--tests/auto/widgets/util/qundogroup/tst_qundogroup.cpp15
1 files changed, 7 insertions, 8 deletions
diff --git a/tests/auto/widgets/util/qundogroup/tst_qundogroup.cpp b/tests/auto/widgets/util/qundogroup/tst_qundogroup.cpp
index 6d51252e22..4d37daf681 100644
--- a/tests/auto/widgets/util/qundogroup/tst_qundogroup.cpp
+++ b/tests/auto/widgets/util/qundogroup/tst_qundogroup.cpp
@@ -609,9 +609,8 @@ void tst_QUndoGroup::commandTextFormat()
{
QString binDir = QLibraryInfo::location(QLibraryInfo::BinariesPath);
- if (QProcess::execute(binDir + "/lrelease -version") != 0) {
- QSKIP("lrelease is missing or broken", SkipAll);
- }
+ if (QProcess::execute(binDir + "/lrelease -version") != 0)
+ QSKIP("lrelease is missing or broken");
QVERIFY(!QProcess::execute(binDir + "/lrelease testdata/qundogroup.ts"));
@@ -654,11 +653,11 @@ public:
tst_QUndoGroup() {}
private slots:
- void setActive() { QSKIP( "Not tested on irix-g++", SkipAll); }
- void addRemoveStack() { QSKIP( "Not tested on irix-g++", SkipAll); }
- void deleteStack() { QSKIP( "Not tested on irix-g++", SkipAll); }
- void checkSignals() { QSKIP( "Not tested on irix-g++", SkipAll); }
- void addStackAndDie() { QSKIP( "Not tested on irix-g++", SkipAll); }
+ void setActive() { QSKIP( "Not tested on irix-g++"); }
+ void addRemoveStack() { QSKIP( "Not tested on irix-g++"); }
+ void deleteStack() { QSKIP( "Not tested on irix-g++"); }
+ void checkSignals() { QSKIP( "Not tested on irix-g++"); }
+ void addStackAndDie() { QSKIP( "Not tested on irix-g++"); }
};
#endif