Skip animations tests for MinGW.
authorFriedemann Kleint <Friedemann.Kleint@digia.com>
Tue, 21 Jan 2014 08:15:49 +0000 (09:15 +0100)
committerThe Qt Project <gerrit-noreply@qt-project.org>
Tue, 28 Jan 2014 21:39:27 +0000 (22:39 +0100)
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>
tests/auto/qml/animation/qparallelanimationgroupjob/tst_qparallelanimationgroupjob.cpp
tests/auto/quick/qquickanimations/tst_qquickanimations.cpp
tests/auto/quick/qquicksmoothedanimation/tst_qquicksmoothedanimation.cpp

index 149f034..45960c9 100644 (file)
@@ -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);
index c6f4779..21872a5 100644 (file)
@@ -470,6 +470,9 @@ void tst_qquickanimations::pathInterpolator()
 
 void tst_qquickanimations::pathInterpolatorBackwardJump()
 {
+#ifdef Q_CC_MINGW
+    QSKIP("QTBUG-36290 - MinGW Animation tests are flaky.");
+#endif
     {
         QQmlEngine engine;
         QQmlComponent c(&engine, testFileUrl("pathInterpolatorBack.qml"));
index 705ee5c..650ce09 100644 (file)
@@ -192,6 +192,9 @@ void tst_qquicksmoothedanimation::valueSource()
 
 void tst_qquicksmoothedanimation::behavior()
 {
+#ifdef Q_CC_MINGW
+    QSKIP("QTBUG-36290 - MinGW Animation tests are flaky.");
+#endif
     QQmlEngine engine;
 
     QQmlComponent c(&engine, testFileUrl("smoothedanimationBehavior.qml"));