Skip to content

Commit

Permalink
tst_qgraphicswidget expect fail on Win 10
Browse files Browse the repository at this point in the history
tst_qgraphicswidget::checkReason_ActiveWindow fails on Windows 10
Creators Update. Added expect fail for Windows platform.

Task-number: QTBUG-62244
Change-Id: I71868a496659e7136af9a5b74684ba39edaf03ae
Reviewed-by: Simon Hausmann <simon.hausmann@qt.io>
(cherry picked from commit 3d5bf00)
  • Loading branch information
Joni Jäntti committed Aug 15, 2017
1 parent 4d6d230 commit c86a75e
Showing 1 changed file with 7 additions and 0 deletions.
Expand Up @@ -46,6 +46,7 @@
#include <qcommonstyle.h>
#include <qstylefactory.h>
#include <qscreen.h>
#include <QSysInfo>

#include "../../../qtest-config.h"

Expand Down Expand Up @@ -1808,11 +1809,17 @@ void tst_QGraphicsWidget::updateFocusChainWhenChildDie()
QTest::mouseClick(view.viewport(), Qt::LeftButton, 0, center);
#ifdef Q_OS_MAC
QEXPECT_FAIL("", "QTBUG-23699", Continue);
#endif
#ifdef Q_OS_WIN
if (QSysInfo::kernelVersion() == "10.0.15063") {
QEXPECT_FAIL("", "This fails on Windows 10 Creators Update (10.0.15063)", Continue);
}
#endif
QTRY_COMPARE(qApp->activeWindow(), static_cast<QWidget *>(&view));
QTRY_COMPARE(scene.focusItem(), static_cast<QGraphicsItem *>(w));
}


void tst_QGraphicsWidget::sizeHint_data()
{
QTest::addColumn<bool>("layout");
Expand Down

0 comments on commit c86a75e

Please sign in to comment.