aboutsummaryrefslogtreecommitdiffstats
path: root/tests
diff options
context:
space:
mode:
authorAaron Kennedy <aaron.kennedy@nokia.com>2012-01-05 15:25:38 +0000
committerQt by Nokia <qt-info@nokia.com>2012-01-05 17:31:47 +0100
commitcda3583576225a9b8b2d8845cd3c4ac06e104e66 (patch)
tree129fcc628873290ba54bebb91e7ee28681f7295a /tests
parent510fa24d48a3fd1d7ae8337731ac1d19177de5a2 (diff)
QEXPECT_FAIL() failing test
Task-number: QTBUG-23478 Change-Id: I39f092833098dd7bdd1abee7e30a3a4b8b2f3b5d Reviewed-by: Aaron Kennedy <aaron.kennedy@nokia.com>
Diffstat (limited to 'tests')
-rw-r--r--tests/auto/qtquick2/qdeclarativestates/tst_qdeclarativestates.cpp3
1 files changed, 3 insertions, 0 deletions
diff --git a/tests/auto/qtquick2/qdeclarativestates/tst_qdeclarativestates.cpp b/tests/auto/qtquick2/qdeclarativestates/tst_qdeclarativestates.cpp
index 4d5df12e0b..df0c2f2dfd 100644
--- a/tests/auto/qtquick2/qdeclarativestates/tst_qdeclarativestates.cpp
+++ b/tests/auto/qtquick2/qdeclarativestates/tst_qdeclarativestates.cpp
@@ -1001,6 +1001,9 @@ void tst_qdeclarativestates::anchorRewindBug()
// and column's implicit resizing should still work
QVERIFY(!QQuickItemPrivate::get(column)->heightValid);
QVERIFY(!QQuickItemPrivate::get(column)->widthValid);
+#ifdef Q_OS_MAC
+ QEXPECT_FAIL("", "QTBUG-23478", Abort);
+#endif
QTRY_COMPARE(column->height(), 200.0);
delete view;