diff options
author | Olivier Goffart <ogoffart@trolltech.com> | 2010-04-01 12:43:25 (GMT) |
---|---|---|
committer | Olivier Goffart <ogoffart@trolltech.com> | 2010-04-01 12:43:25 (GMT) |
commit | 7c939ad26e2d79a5c72ace724dfa2a3be8e398b3 (patch) | |
tree | d4df9e0ab2ecd5ea35b917d66a4d4e1864d2e137 /tests/auto | |
parent | 3a1f89fc122c202d5b2f9352e81d467b0a48e61c (diff) | |
download | Qt-7c939ad26e2d79a5c72ace724dfa2a3be8e398b3.zip Qt-7c939ad26e2d79a5c72ace724dfa2a3be8e398b3.tar.gz Qt-7c939ad26e2d79a5c72ace724dfa2a3be8e398b3.tar.bz2 |
Skip tst_QGraphicsItem::updateMicroFocus test on Windows and Mac as it does not passes
Diffstat (limited to 'tests/auto')
-rw-r--r-- | tests/auto/qgraphicsitem/tst_qgraphicsitem.cpp | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/tests/auto/qgraphicsitem/tst_qgraphicsitem.cpp b/tests/auto/qgraphicsitem/tst_qgraphicsitem.cpp index 9229c7c..89d5958 100644 --- a/tests/auto/qgraphicsitem/tst_qgraphicsitem.cpp +++ b/tests/auto/qgraphicsitem/tst_qgraphicsitem.cpp @@ -10029,6 +10029,10 @@ public: void tst_QGraphicsItem::updateMicroFocus() { +#if defined Q_OS_WIN || defined Q_OS_MAC + QSKIP("QTBUG-9578", SkipAll); + return; +#endif QGraphicsScene scene; QWidget parent; QGridLayout layout; |