aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/qml/animation
diff options
context:
space:
mode:
authorFriedemann Kleint <Friedemann.Kleint@digia.com>2014-01-21 09:15:49 +0100
committerThe Qt Project <gerrit-noreply@qt-project.org>2014-01-28 22:39:27 +0100
commit1f23802e46d0141fbc3b7a2d2c1025b6b7d903ae (patch)
tree8ec895d0c38bcc1a418b7c3c8739363b4f258e82 /tests/auto/qml/animation
parent8de92011388707888634b35973edffbaaecba39e (diff)
Skip animations tests for MinGW.
These tests typically fail in the CI. Task-number: QTBUG-36290 Change-Id: I36a19c2914932d4f70c1df24e1c5ad4a3d0e2795 Reviewed-by: Tony Sarajärvi <tony.sarajarvi@digia.com> Reviewed-by: Erik Verbruggen <erik.verbruggen@digia.com> Reviewed-by: Alan Alpert <aalpert@blackberry.com>
Diffstat (limited to 'tests/auto/qml/animation')
-rw-r--r--tests/auto/qml/animation/qparallelanimationgroupjob/tst_qparallelanimationgroupjob.cpp3
1 files changed, 3 insertions, 0 deletions
diff --git a/tests/auto/qml/animation/qparallelanimationgroupjob/tst_qparallelanimationgroupjob.cpp b/tests/auto/qml/animation/qparallelanimationgroupjob/tst_qparallelanimationgroupjob.cpp
index 149f034903..45960c9e97 100644
--- a/tests/auto/qml/animation/qparallelanimationgroupjob/tst_qparallelanimationgroupjob.cpp
+++ b/tests/auto/qml/animation/qparallelanimationgroupjob/tst_qparallelanimationgroupjob.cpp
@@ -868,6 +868,9 @@ void tst_QParallelAnimationGroupJob::addAndRemoveDuration()
void tst_QParallelAnimationGroupJob::pauseResume()
{
+#ifdef Q_CC_MINGW
+ QSKIP("QTBUG-36290 - MinGW Animation tests are flaky.");
+#endif
QParallelAnimationGroupJob group;
TestAnimation *anim = new TestAnimation(250); // 0, duration = 250;
group.appendAnimation(anim);