aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMilla Pohjanheimo <milla.pohjanheimo@theqtcompany.com>2016-04-05 11:58:35 +0300
committerMilla Pohjanheimo <milla.pohjanheimo@theqtcompany.com>2016-04-05 09:27:57 +0000
commitdcb06c7880b89530f3fbbb6bbe519d203dce517d (patch)
tree4ff7757337023bdb8caecd6302b6da394b53c68d
parent91524134d4884beb9ee2695e9de27b211068d973 (diff)
Skipping testRecent() and testFrequent() tests from Win8.1 onwards
Interaction with Windows taskbar probably is unstable and it makes the tests fail randomly. Extending QSKIP to affect Win8.1 also. Change-Id: I757a01fb84fe0b585ef076c423c04962d2a91749 Reviewed-by: Friedemann Kleint <Friedemann.Kleint@theqtcompany.com>
-rw-r--r--tests/auto/qwinjumplist/tst_qwinjumplist.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/tests/auto/qwinjumplist/tst_qwinjumplist.cpp b/tests/auto/qwinjumplist/tst_qwinjumplist.cpp
index cf50b8d..26f382e 100644
--- a/tests/auto/qwinjumplist/tst_qwinjumplist.cpp
+++ b/tests/auto/qwinjumplist/tst_qwinjumplist.cpp
@@ -55,8 +55,8 @@ static inline QByteArray msgFileNameMismatch(const QString &f1, const QString &f
void tst_QWinJumpList::testRecent()
{
- if (QSysInfo::windowsVersion() >= QSysInfo::WV_WINDOWS10)
- QSKIP("QTBUG-48751: Recent items do not work on Windows 10", Continue);
+ if (QSysInfo::windowsVersion() >= QSysInfo::WV_WINDOWS8_1)
+ QSKIP("QTBUG-48751: Recent items do not work on Windows 8.1 or 10", Continue);
QScopedPointer<QWinJumpList> jumplist(new QWinJumpList);
QWinJumpListCategory *recent1 = jumplist->recent();
QVERIFY(recent1);
@@ -104,8 +104,8 @@ void tst_QWinJumpList::testRecent()
void tst_QWinJumpList::testFrequent()
{
- if (QSysInfo::windowsVersion() >= QSysInfo::WV_WINDOWS10)
- QSKIP("QTBUG-48751: Frequent items do not work on Windows 10", Continue);
+ if (QSysInfo::windowsVersion() >= QSysInfo::WV_WINDOWS8_1)
+ QSKIP("QTBUG-48751: Frequent items do not work on Windows 8.1 or 10", Continue);
QScopedPointer<QWinJumpList> jumplist(new QWinJumpList);
QWinJumpListCategory *frequent1 = jumplist->frequent();
QVERIFY(frequent1);