summaryrefslogtreecommitdiffstats
path: root/tests/auto
diff options
context:
space:
mode:
authorBradley T. Hughes <bradley.hughes@nokia.com>2012-01-17 12:51:46 +0100
committerQt by Nokia <qt-info@nokia.com>2012-01-23 14:47:10 +0100
commit6f21509ac006cf8cd82d3b35b1016a4f9a0c0f89 (patch)
treeec6a40bae33955d4a1d98e6f51ded354056e544b /tests/auto
parent1d0d44a53af4945bc66620a3cb2bbd802a724a19 (diff)
Skip tst_QMenu::QTBUG_10735_crashWithDialog() on Mac OS X
This test currently hangs, preventing the autotest from finishing. Task-number: QTBUG-23677 Change-Id: I3c5f56c10735d65fb35de4e22a1e2e6414532309 Reviewed-by: Jason McDonald <jason.mcdonald@nokia.com>
Diffstat (limited to 'tests/auto')
-rw-r--r--tests/auto/widgets/widgets/qmenu/tst_qmenu.cpp4
1 files changed, 4 insertions, 0 deletions
diff --git a/tests/auto/widgets/widgets/qmenu/tst_qmenu.cpp b/tests/auto/widgets/widgets/qmenu/tst_qmenu.cpp
index cda7310fe6..54a86c546b 100644
--- a/tests/auto/widgets/widgets/qmenu/tst_qmenu.cpp
+++ b/tests/auto/widgets/widgets/qmenu/tst_qmenu.cpp
@@ -942,6 +942,10 @@ private:
void tst_QMenu::QTBUG_10735_crashWithDialog()
{
+#ifdef Q_OS_MAC
+ QSKIP("Test currently hangs on Mac OS X, see QTBUG-23677");
+#endif
+
MyMenu menu;
QTimer::singleShot(1000, &menu, SLOT(activateLastAction()));