diff options
author | Joerg Bornemann <joerg.bornemann@trolltech.com> | 2009-08-12 12:42:51 (GMT) |
---|---|---|
committer | Joerg Bornemann <joerg.bornemann@trolltech.com> | 2009-08-12 12:45:44 (GMT) |
commit | e7ae75aa315ee3e5ce465b1bcc878aeccea742c2 (patch) | |
tree | 5c31113fa2b1e68c910cd2498fc556e7a39ffeb2 /tests | |
parent | 8059a73315e0a3a05eb0ff4281ebdda73a336150 (diff) | |
download | Qt-e7ae75aa315ee3e5ce465b1bcc878aeccea742c2.zip Qt-e7ae75aa315ee3e5ce465b1bcc878aeccea742c2.tar.gz Qt-e7ae75aa315ee3e5ce465b1bcc878aeccea742c2.tar.bz2 |
don't test mouse over on Windows mobile in tst_QWidget::setToolTip
Reviewed-by: mauricek
Diffstat (limited to 'tests')
-rw-r--r-- | tests/auto/qwidget/tst_qwidget.cpp | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/tests/auto/qwidget/tst_qwidget.cpp b/tests/auto/qwidget/tst_qwidget.cpp index fc91b74..34971a9 100644 --- a/tests/auto/qwidget/tst_qwidget.cpp +++ b/tests/auto/qwidget/tst_qwidget.cpp @@ -5827,7 +5827,9 @@ void tst_QWidget::setToolTip() QCOMPARE(widget.toolTip(), QString()); QCOMPARE(spy.count(), 2); - +#ifdef Q_OS_WINCE_WM + QSKIP("Mouse over doesn't work on Windows mobile.", SkipAll); +#endif for (int pass = 0; pass < 2; ++pass) { QWidget *popup = new QWidget(0, Qt::Popup); |