summaryrefslogtreecommitdiffstats
path: root/tests
diff options
context:
space:
mode:
authorJanne Anttila <janne.anttila@digia.com>2010-03-11 08:32:33 (GMT)
committerJanne Anttila <janne.anttila@digia.com>2010-03-11 08:36:23 (GMT)
commitaf2f85585cd90c27b39600c75bdcefa78d52c4ea (patch)
tree77e9924cd5392ee5e14122309e9d3f57749760c7 /tests
parentcbbea347cbc66720b02a5a1c3ac5757743023d09 (diff)
downloadQt-af2f85585cd90c27b39600c75bdcefa78d52c4ea.zip
Qt-af2f85585cd90c27b39600c75bdcefa78d52c4ea.tar.gz
Qt-af2f85585cd90c27b39600c75bdcefa78d52c4ea.tar.bz2
XFAIL for a new qwidget autotest on MAC and QWS.
Widget attributes seems to be inconsistently set on different platforms. There are two task to harmonize the attributes on different platforms: QTBUG-8941 and QTBUG-8911 The tests were XFAIL:d in order that S60 integration is not blocked. Reviewed-by: Jason Barron
Diffstat (limited to 'tests')
-rw-r--r--tests/auto/qwidget/tst_qwidget.cpp6
1 files changed, 5 insertions, 1 deletions
diff --git a/tests/auto/qwidget/tst_qwidget.cpp b/tests/auto/qwidget/tst_qwidget.cpp
index f03b7d7..65f4945 100644
--- a/tests/auto/qwidget/tst_qwidget.cpp
+++ b/tests/auto/qwidget/tst_qwidget.cpp
@@ -10043,6 +10043,10 @@ void tst_QWidget::taskQTBUG_7532_tabOrderWithFocusProxy()
void tst_QWidget::movedAndResizedAttributes()
{
+#if defined (Q_OS_MAC) || defined(Q_WS_QWS)
+ QEXPECT_FAIL("", "FixMe, QTBUG-8941", Abort);
+ QVERIFY(false);
+#else
QWidget w;
w.show();
@@ -10090,7 +10094,7 @@ void tst_QWidget::movedAndResizedAttributes()
w.resize(100, 100);
QVERIFY(w.testAttribute(Qt::WA_Moved));
QVERIFY(w.testAttribute(Qt::WA_Resized));
-
+#endif
}
QTEST_MAIN(tst_QWidget)