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>
This commit is contained in:
Friedemann Kleint 2014-01-21 09:15:49 +01:00 committed by The Qt Project
parent 8de9201138
commit 1f23802e46
3 changed files with 9 additions and 0 deletions

View 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);

View 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"));

View 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"));