diff options
author | ninerider <qt-info@nokia.com> | 2009-10-08 13:27:05 (GMT) |
---|---|---|
committer | ninerider <qt-info@nokia.com> | 2009-10-08 13:27:05 (GMT) |
commit | d64c806a7876937cceffd3d3185cf44510ec554e (patch) | |
tree | 9fc69078b543340806e183fae3550e2b1711c9c1 | |
parent | 77eceb53ee6fc7f20570f070124cd4a5f79698ab (diff) | |
download | Qt-d64c806a7876937cceffd3d3185cf44510ec554e.zip Qt-d64c806a7876937cceffd3d3185cf44510ec554e.tar.gz Qt-d64c806a7876937cceffd3d3185cf44510ec554e.tar.bz2 |
Skipped test for Windows Mobile involving mouse move events.
Events caused by dragging a mouse are currently unavailable in
Windows Mobile.
Reviewed-by: Joerg
-rw-r--r-- | tests/auto/qmenu/tst_qmenu.cpp | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/tests/auto/qmenu/tst_qmenu.cpp b/tests/auto/qmenu/tst_qmenu.cpp index 726ca55..4eb149f 100644 --- a/tests/auto/qmenu/tst_qmenu.cpp +++ b/tests/auto/qmenu/tst_qmenu.cpp @@ -812,6 +812,9 @@ public: void tst_QMenu::task258920_mouseBorder() { +#ifdef Q_OS_WINCE_WM + QSKIP("Mouse move related signals for Windows Mobile unavailable", SkipAll); +#endif Menu258920 menu; QAction *action = menu.addAction("test"); |