From: Charles Yin Date: Thu, 28 Jul 2011 00:19:23 +0000 (+1000) Subject: increase the tryCompare timeout value to make the CI happy X-Git-Url: http://git.silmor.de/gitweb/?a=commitdiff_plain;h=5266db7357f8a0ce4ce175b5becdbdd2c094a808;p=konrad%2Fqtdeclarative.git increase the tryCompare timeout value to make the CI happy Change-Id: I9561213295969f3064637584f45deb66f56c071b Reviewed-on: http://codereview.qt.nokia.com/2309 Reviewed-by: Qt Sanity Bot Reviewed-by: Charles Yin --- diff --git a/tests/auto/qmltest/events/tst_events.qml b/tests/auto/qmltest/events/tst_events.qml index f228637..e3d0b13 100644 --- a/tests/auto/qmltest/events/tst_events.qml +++ b/tests/auto/qmltest/events/tst_events.qml @@ -74,13 +74,13 @@ Rectangle { function test_key_click() { keyClick(Qt.Key_Left) - tryCompare(top, "leftKeyPressed", true) - tryCompare(top, "leftKeyReleased", true) + tryCompare(top, "leftKeyPressed", true, 10000) + tryCompare(top, "leftKeyReleased", true, 10000) } function test_mouse_click() { mouseClick(top, 25, 30) - tryCompare(top, "mouseHasBeenClicked", true) + tryCompare(top, "mouseHasBeenClicked", true, 10000) } } }