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:
parent
8de9201138
commit
1f23802e46
|
@ -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);
|
||||
|
|
|
@ -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"));
|
||||
|
|
|
@ -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"));
|
||||
|
|
Loading…
Reference in New Issue