summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJoerg Bornemann <joerg.bornemann@trolltech.com>2009-08-18 10:36:55 +0200
committerJoerg Bornemann <joerg.bornemann@trolltech.com>2009-08-18 12:37:03 +0200
commite51e71cc3f7b79f2e87888f298eb8968a1929fe0 (patch)
treee22bcf785e33fbaa6853cdf5cbb9f143aa0d89d1
parent5dc610c1ee0fd6230009d7a4bdcb13ec56873438 (diff)
don't test tst_QMenu::mouseActivation on Windows mobile
We integrate QMenu into the native menu system. Thus it doesn't make sense to click at position (5,5) or so. We have the windowsmobile auto test for this. Reviewed-by: thartman
-rw-r--r--tests/auto/qmenu/tst_qmenu.cpp3
1 files changed, 3 insertions, 0 deletions
diff --git a/tests/auto/qmenu/tst_qmenu.cpp b/tests/auto/qmenu/tst_qmenu.cpp
index da56a1cd0..7a0062fb0 100644
--- a/tests/auto/qmenu/tst_qmenu.cpp
+++ b/tests/auto/qmenu/tst_qmenu.cpp
@@ -261,6 +261,9 @@ tst_QMenu::addActionsAndClear()
void tst_QMenu::mouseActivation()
{
+#ifdef Q_OS_WINCE_WM
+ QSKIP("We have a separate mouseActivation test for Windows mobile.", SkipAll);
+#endif
QMenu menu;
menu.addAction("Menu Action");
menu.show();