Remove skip from tst_QWidget::updateWhileMinimized

This test works for me with KWin and is blacklisted on most linux platforms.
Let's try to remove the blacklisting next.
Using qWait right in front of the QTRY_VERIFY does not add any value.

Task-number: QTBUG-26424
Change-Id: I2dcd5fb3f3cbb64e190c777231b791d1ad9dd704
Reviewed-by: Friedemann Kleint <Friedemann.Kleint@qt.io>
bb10
Frederik Gladhorn 2018-10-17 14:39:30 +02:00
parent c99b8a3f41
commit f5962d05d3
1 changed files with 0 additions and 3 deletions

View File

@ -7655,9 +7655,6 @@ void tst_QWidget::updateWhileMinimized()
// Restore window.
widget.showNormal();
QTest::qWait(30);
if (m_platform == QStringLiteral("xcb"))
QSKIP("QTBUG-26424");
QTRY_COMPARE(widget.numPaintEvents, 1);
QCOMPARE(widget.paintedRegion, QRegion(0, 0, 50, 50));
}