diff options
author | Olivier Goffart <ogoffart@trolltech.com> | 2009-10-05 17:41:06 (GMT) |
---|---|---|
committer | Olivier Goffart <ogoffart@trolltech.com> | 2009-10-05 17:46:05 (GMT) |
commit | 8dbbff1dec967d043255e8cea2c4d32be3c1f9cd (patch) | |
tree | 706b0fd77d2569f71307465bb1f58944e88f58db /tests/auto/qgraphicsscene | |
parent | a3fc0c3b6a45864c845e3a25640b967dd34fa6fc (diff) | |
download | Qt-8dbbff1dec967d043255e8cea2c4d32be3c1f9cd.zip Qt-8dbbff1dec967d043255e8cea2c4d32be3c1f9cd.tar.gz Qt-8dbbff1dec967d043255e8cea2c4d32be3c1f9cd.tar.bz2 |
Stabilize test on X11
Diffstat (limited to 'tests/auto/qgraphicsscene')
-rw-r--r-- | tests/auto/qgraphicsscene/tst_qgraphicsscene.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/auto/qgraphicsscene/tst_qgraphicsscene.cpp b/tests/auto/qgraphicsscene/tst_qgraphicsscene.cpp index e55dc9aa..8459331 100644 --- a/tests/auto/qgraphicsscene/tst_qgraphicsscene.cpp +++ b/tests/auto/qgraphicsscene/tst_qgraphicsscene.cpp @@ -1705,7 +1705,7 @@ void tst_QGraphicsScene::hoverEvents_parentChild() view.scale(1.7, 1.7); view.show(); QTest::qWaitForWindowShown(&view); - QTest::qWait(50); + QTest::qWait(70); QGraphicsSceneMouseEvent mouseEvent(QEvent::GraphicsSceneMouseMove); mouseEvent.setScenePos(QPointF(-1000, -1000)); @@ -1726,7 +1726,7 @@ void tst_QGraphicsScene::hoverEvents_parentChild() qApp->processEvents(); // this posts updates from the scene to the view qApp->processEvents(); // which trigger a repaint here - QVERIFY(items.at(i)->isHovered); + QTRY_VERIFY(items.at(i)->isHovered); if (i < 14) QVERIFY(!items.at(i + 1)->isHovered); i += j ? 1 : -1; |