From 632462a8d4148c8fad312a08c274d6dc05950d8d Mon Sep 17 00:00:00 2001 From: Janne Anttila Date: Mon, 28 Sep 2009 11:00:46 +0300 Subject: Enabled WINCE workaround for S60 in QEasingCurve::valueForProgress test. See: 82275b4c03a0. This workaround applies also for Symbian. Reviewed-by: TrustMe --- tests/auto/qeasingcurve/tst_qeasingcurve.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/auto/qeasingcurve/tst_qeasingcurve.cpp b/tests/auto/qeasingcurve/tst_qeasingcurve.cpp index 52ffcb5..8cf686e 100644 --- a/tests/auto/qeasingcurve/tst_qeasingcurve.cpp +++ b/tests/auto/qeasingcurve/tst_qeasingcurve.cpp @@ -418,7 +418,7 @@ void tst_QEasingCurve::valueForProgress() // the least significant digit it is still subject to rounding errors qreal error = easeConv - ex; qreal errorbound = 0.00001; -#ifdef Q_OS_WINCE +#if defined( Q_OS_WINCE ) || defined( Q_OS_SYMBIAN ) // exception values for WINCE(this test should be rewritten, as it only freezes the status quo of QEasingCurve // The failing (2) values are explicitly excepted here: // The source values for the comparison table should remain untruncated double and the @@ -427,7 +427,7 @@ void tst_QEasingCurve::valueForProgress() if ((type == int(QEasingCurve::InOutBounce) && (i == 8 || i == 6) ) || (type == int(QEasingCurve::OutExpo) && i == 2)) errorbound = 0.0002; #endif - // accept the potential rounding error in the least significant digit + // accept the potential rounding error in the least significant digit QVERIFY(error <= errorbound ); } #endif -- cgit v0.12