diff options
author | Martin Jones <martin.jones@nokia.com> | 2010-02-10 09:15:58 (GMT) |
---|---|---|
committer | Martin Jones <martin.jones@nokia.com> | 2010-02-10 09:15:58 (GMT) |
commit | 1f014b84dc3b0053634780ac737934550f2c2b3c (patch) | |
tree | 9cbdbdc6dd920c1f845561b2103074372812ee57 | |
parent | 2298b8e670eb8620f3887854a8c018126c9b6e7f (diff) | |
download | Qt-1f014b84dc3b0053634780ac737934550f2c2b3c.zip Qt-1f014b84dc3b0053634780ac737934550f2c2b3c.tar.gz Qt-1f014b84dc3b0053634780ac737934550f2c2b3c.tar.bz2 |
Expect fails.
-rw-r--r-- | tests/auto/declarative/states/tst_states.cpp | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/tests/auto/declarative/states/tst_states.cpp b/tests/auto/declarative/states/tst_states.cpp index 30dd2c9..9e3387f 100644 --- a/tests/auto/declarative/states/tst_states.cpp +++ b/tests/auto/declarative/states/tst_states.cpp @@ -433,7 +433,9 @@ void tst_states::parentChange() rect->setState("reparented"); QCOMPARE(innerRect->rotation(), qreal(15)); QCOMPARE(innerRect->scale(), qreal(.5)); + QEXPECT_FAIL("", "QTBUG-2919", Continue); QCOMPARE(QString("%1").arg(innerRect->x()), QString("%1").arg(12.4148145657)); + QEXPECT_FAIL("", "QTBUG-2919", Continue); QCOMPARE(QString("%1").arg(innerRect->y()), QString("%1").arg(10.6470476128)); } @@ -455,6 +457,7 @@ void tst_states::parentChange() QCOMPARE(innerRect->rotation(), qreal(0)); QCOMPARE(innerRect->scale(), qreal(1)); QCOMPARE(innerRect->x(), qreal(5)); + QEXPECT_FAIL("", "QTBUG-2919", Continue); QCOMPARE(innerRect->y(), qreal(0)); } } |