summaryrefslogtreecommitdiffstats
path: root/tests/auto/declarative/qdeclarativeflickable
diff options
context:
space:
mode:
authorMartin Jones <martin.jones@nokia.com>2011-07-03 23:52:15 (GMT)
committerMartin Jones <martin.jones@nokia.com>2011-07-03 23:52:15 (GMT)
commit8fbb802fa50d0a01c9c01d007a3e016c45fa863c (patch)
treee16a579d48acf7d2d184a3e4a31b22fd70c43bb2 /tests/auto/declarative/qdeclarativeflickable
parent927b22b06ee2e749395e73f457fe3c16ea087864 (diff)
downloadQt-8fbb802fa50d0a01c9c01d007a3e016c45fa863c.zip
Qt-8fbb802fa50d0a01c9c01d007a3e016c45fa863c.tar.gz
Qt-8fbb802fa50d0a01c9c01d007a3e016c45fa863c.tar.bz2
Skip flick velocity test on Mac.
Change-Id: Ib995961d7b1a939e5feb86d72a82408d1ceebe88 Task-number: QTBUG-19676 Reviewed-by: Bea Lam
Diffstat (limited to 'tests/auto/declarative/qdeclarativeflickable')
-rw-r--r--tests/auto/declarative/qdeclarativeflickable/tst_qdeclarativeflickable.cpp4
1 files changed, 4 insertions, 0 deletions
diff --git a/tests/auto/declarative/qdeclarativeflickable/tst_qdeclarativeflickable.cpp b/tests/auto/declarative/qdeclarativeflickable/tst_qdeclarativeflickable.cpp
index d3763a7..4d4c30b 100644
--- a/tests/auto/declarative/qdeclarativeflickable/tst_qdeclarativeflickable.cpp
+++ b/tests/auto/declarative/qdeclarativeflickable/tst_qdeclarativeflickable.cpp
@@ -484,6 +484,10 @@ void tst_qdeclarativeflickable::wheel()
void tst_qdeclarativeflickable::flickVelocity()
{
+#ifdef Q_WS_MAC
+ QSKIP("Producing flicks on Mac CI impossible due to timing problems", SkipAll);
+#endif
+
QDeclarativeView *canvas = new QDeclarativeView;
canvas->setSource(QUrl::fromLocalFile(SRCDIR "/data/flickable03.qml"));
canvas->show();