summaryrefslogtreecommitdiffstats
path: root/tests/auto/qmenu
diff options
context:
space:
mode:
authorJoerg Bornemann <joerg.bornemann@trolltech.com>2009-08-18 08:36:55 (GMT)
committerJoerg Bornemann <joerg.bornemann@trolltech.com>2009-08-18 10:37:03 (GMT)
commite51e71cc3f7b79f2e87888f298eb8968a1929fe0 (patch)
treee22bcf785e33fbaa6853cdf5cbb9f143aa0d89d1 /tests/auto/qmenu
parent5dc610c1ee0fd6230009d7a4bdcb13ec56873438 (diff)
downloadQt-e51e71cc3f7b79f2e87888f298eb8968a1929fe0.zip
Qt-e51e71cc3f7b79f2e87888f298eb8968a1929fe0.tar.gz
Qt-e51e71cc3f7b79f2e87888f298eb8968a1929fe0.tar.bz2
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
Diffstat (limited to 'tests/auto/qmenu')
-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 da56a1c..7a0062f 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();