diff options
author | Martin Jones <martin.jones@nokia.com> | 2011-07-03 23:52:15 (GMT) |
---|---|---|
committer | Martin Jones <martin.jones@nokia.com> | 2011-07-08 06:57:40 (GMT) |
commit | b05a2394e13a12fcb2f7e3b766e0b37bb1163eb7 (patch) | |
tree | d1d20d020a066221430c6c313ce4c6479a91f6ee /tests | |
parent | d8af562509f8624837f6fa4a617bc6e976b0731d (diff) | |
download | Qt-b05a2394e13a12fcb2f7e3b766e0b37bb1163eb7.zip Qt-b05a2394e13a12fcb2f7e3b766e0b37bb1163eb7.tar.gz Qt-b05a2394e13a12fcb2f7e3b766e0b37bb1163eb7.tar.bz2 |
Skip flick velocity test on Mac.
Change-Id: Ib995961d7b1a939e5feb86d72a82408d1ceebe88
Task-number: QTBUG-19676
Reviewed-by: Bea Lam
(cherry picked from commit 8fbb802fa50d0a01c9c01d007a3e016c45fa863c)
Diffstat (limited to 'tests')
-rw-r--r-- | tests/auto/declarative/qdeclarativeflickable/tst_qdeclarativeflickable.cpp | 4 |
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(); |