From 1f23802e46d0141fbc3b7a2d2c1025b6b7d903ae Mon Sep 17 00:00:00 2001 From: Friedemann Kleint Date: Tue, 21 Jan 2014 09:15:49 +0100 Subject: [PATCH] Skip animations tests for MinGW. MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit These tests typically fail in the CI. Task-number: QTBUG-36290 Change-Id: I36a19c2914932d4f70c1df24e1c5ad4a3d0e2795 Reviewed-by: Tony Sarajärvi Reviewed-by: Erik Verbruggen Reviewed-by: Alan Alpert --- .../tst_qparallelanimationgroupjob.cpp | 3 +++ tests/auto/quick/qquickanimations/tst_qquickanimations.cpp | 3 +++ .../qquicksmoothedanimation/tst_qquicksmoothedanimation.cpp | 3 +++ 3 files changed, 9 insertions(+) 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); diff --git a/tests/auto/quick/qquickanimations/tst_qquickanimations.cpp b/tests/auto/quick/qquickanimations/tst_qquickanimations.cpp index c6f4779819..21872a5528 100644 --- a/tests/auto/quick/qquickanimations/tst_qquickanimations.cpp +++ b/tests/auto/quick/qquickanimations/tst_qquickanimations.cpp @@ -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")); diff --git a/tests/auto/quick/qquicksmoothedanimation/tst_qquicksmoothedanimation.cpp b/tests/auto/quick/qquicksmoothedanimation/tst_qquicksmoothedanimation.cpp index 705ee5cf46..650ce09dfa 100644 --- a/tests/auto/quick/qquicksmoothedanimation/tst_qquicksmoothedanimation.cpp +++ b/tests/auto/quick/qquicksmoothedanimation/tst_qquicksmoothedanimation.cpp @@ -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"));