summaryrefslogtreecommitdiffstats
path: root/tests/auto/installer/lib7zfacade/tst_lib7zfacade.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'tests/auto/installer/lib7zfacade/tst_lib7zfacade.cpp')
-rw-r--r--tests/auto/installer/lib7zfacade/tst_lib7zfacade.cpp6
1 files changed, 5 insertions, 1 deletions
diff --git a/tests/auto/installer/lib7zfacade/tst_lib7zfacade.cpp b/tests/auto/installer/lib7zfacade/tst_lib7zfacade.cpp
index bae42fed9..5b88c0074 100644
--- a/tests/auto/installer/lib7zfacade/tst_lib7zfacade.cpp
+++ b/tests/auto/installer/lib7zfacade/tst_lib7zfacade.cpp
@@ -94,7 +94,11 @@ private slots:
QVector<Lib7z::File> files = Lib7z::listArchive(&file);
QCOMPARE(files.count(), 1);
#ifdef Q_OS_UNIX
- QSKIP("This test requires the tme handling to be repaired first.", SkipSingle);
+ #if QT_VERSION < 0x050000
+ QSKIP("This test requires the time handling to be repaired first.", SkipSingle);
+ #else
+ QSKIP("This test requires the time handling to be repaired first.");
+ #endif
#endif
QCOMPARE(files.first(), m_file);
}