aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/particles/qsgwander/tst_qsgwander.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'tests/auto/particles/qsgwander/tst_qsgwander.cpp')
-rw-r--r--tests/auto/particles/qsgwander/tst_qsgwander.cpp5
1 files changed, 4 insertions, 1 deletions
diff --git a/tests/auto/particles/qsgwander/tst_qsgwander.cpp b/tests/auto/particles/qsgwander/tst_qsgwander.cpp
index 0a7324862e..b200b6fbf0 100644
--- a/tests/auto/particles/qsgwander/tst_qsgwander.cpp
+++ b/tests/auto/particles/qsgwander/tst_qsgwander.cpp
@@ -42,6 +42,7 @@
#include <QtTest/QtTest>
#include "../shared/particlestestsshared.h"
#include <private/qsgparticlesystem_p.h>
+#include <private/qabstractanimation_p.h>
class tst_qsgwander : public QObject
{
@@ -55,12 +56,14 @@ private slots:
tst_qsgwander::tst_qsgwander()
{
+ QUnifiedTimer::instance()->setConsistentTiming(true);
}
void tst_qsgwander::test_basic()
{
QSGView* view = createView(QCoreApplication::applicationDirPath() + "/data/basic.qml", 600);
QSGParticleSystem* system = view->rootObject()->findChild<QSGParticleSystem*>("system");
+ ensureAnimTime(600, system->m_animation);
QCOMPARE(system->groupData[0]->size(), 500);
//Since Wander is random perturbations, the compromise between stability and actual testing is to hope that one of
@@ -76,7 +79,7 @@ void tst_qsgwander::test_basic()
QCOMPARE(d->lifeSpan, 0.5f);
QCOMPARE(d->size, 32.f);
QCOMPARE(d->endSize, 32.f);
- QVERIFY(d->t <= ((qreal)system->timeInt/1000.0));
+ QVERIFY(myFuzzyLEQ(d->t, ((qreal)system->timeInt/1000.0)));
if (d->vx != 0.0f)
vxChanged = true;
if (d->vy != 0.0f)