summaryrefslogtreecommitdiffstats
path: root/tests/auto/gui
diff options
context:
space:
mode:
authorBradley T. Hughes <bradley.hughes@nokia.com>2012-02-16 09:40:02 +0100
committerQt by Nokia <qt-info@nokia.com>2012-02-17 11:44:29 +0100
commitee7c81b9c4cfcc3635ff8241480d10c94af4d316 (patch)
treea18336381b47ba518b174624df68c16f6925add2 /tests/auto/gui
parentea1ef2a471ef50495e8db9fd47aee6af72264470 (diff)
Skip tst_QGuiApplication::focusObject() on Mac OS X
This test fails intermittently, and at random locations. Task-number: QTBUG-24322 Change-Id: Ied6dd4d1593066debc0fb48c6ca2a17a1f4d51b7 Reviewed-by: Rohan McGovern <rohan.mcgovern@nokia.com> Reviewed-by: Jason McDonald <jason.mcdonald@nokia.com>
Diffstat (limited to 'tests/auto/gui')
-rw-r--r--tests/auto/gui/kernel/qguiapplication/tst_qguiapplication.cpp3
1 files changed, 3 insertions, 0 deletions
diff --git a/tests/auto/gui/kernel/qguiapplication/tst_qguiapplication.cpp b/tests/auto/gui/kernel/qguiapplication/tst_qguiapplication.cpp
index 8d0836e7c3..7664706b93 100644
--- a/tests/auto/gui/kernel/qguiapplication/tst_qguiapplication.cpp
+++ b/tests/auto/gui/kernel/qguiapplication/tst_qguiapplication.cpp
@@ -78,6 +78,9 @@ public:
void tst_QGuiApplication::focusObject()
{
+#ifdef Q_OS_MAC
+ QSKIP("This test fails intermittently, and at different locations. See QTBUG-24322");
+#endif
int argc = 0;
QGuiApplication app(argc, 0);