diff -r 5dc02b23752f -r 3e2da88830cd tests/auto/declarative/qdeclarativeflickable/tst_qdeclarativeflickable.cpp --- a/tests/auto/declarative/qdeclarativeflickable/tst_qdeclarativeflickable.cpp Tue Jul 06 15:10:48 2010 +0300 +++ b/tests/auto/declarative/qdeclarativeflickable/tst_qdeclarativeflickable.cpp Wed Aug 18 10:37:55 2010 +0300 @@ -46,6 +46,11 @@ #include #include +#ifdef Q_OS_SYMBIAN +// In Symbian OS test data is located in applications private dir +#define SRCDIR "." +#endif + class tst_qdeclarativeflickable : public QObject { Q_OBJECT @@ -142,6 +147,10 @@ QCOMPARE(obj->pressDelay(), 200); QCOMPARE(obj->maximumFlickVelocity(), 2000.); + QVERIFY(obj->property("ok").toBool() == false); + QMetaObject::invokeMethod(obj, "check"); + QVERIFY(obj->property("ok").toBool() == true); + delete obj; }