summaryrefslogtreecommitdiffstats
path: root/tests/auto/qfocusevent
diff options
context:
space:
mode:
Diffstat (limited to 'tests/auto/qfocusevent')
-rw-r--r--tests/auto/qfocusevent/tst_qfocusevent.cpp9
1 files changed, 5 insertions, 4 deletions
diff --git a/tests/auto/qfocusevent/tst_qfocusevent.cpp b/tests/auto/qfocusevent/tst_qfocusevent.cpp
index d295a10171..9a1d312c9f 100644
--- a/tests/auto/qfocusevent/tst_qfocusevent.cpp
+++ b/tests/auto/qfocusevent/tst_qfocusevent.cpp
@@ -108,7 +108,9 @@ public slots:
private slots:
void checkReason_Tab();
void checkReason_ShiftTab();
+#ifndef Q_OS_WIN32
void checkReason_BackTab();
+#endif
void checkReason_Popup();
void checkReason_focusWidget();
void checkReason_Shortcut();
@@ -230,11 +232,10 @@ void tst_QFocusEvent::checkReason_ShiftTab()
/*!
In this test we verify that the Qt::KeyBacktab key is handled in a qfocusevent
*/
+// Backtab is not supported on Windows.
+#ifndef Q_OS_WIN32
void tst_QFocusEvent::checkReason_BackTab()
{
-#ifdef Q_OS_WIN32 // key is not supported on Windows
- QSKIP( "Backtab is not supported on Windows", SkipAll );
-#else
initWidget();
QVERIFY( childFocusWidgetOne->hasFocus() );
@@ -250,8 +251,8 @@ void tst_QFocusEvent::checkReason_BackTab()
QVERIFY( childFocusWidgetTwo->hasFocus() );
QCOMPARE( childFocusWidgetOne->focusOutEventReason, int(Qt::BacktabFocusReason) );
QCOMPARE( childFocusWidgetTwo->focusInEventReason, int(Qt::BacktabFocusReason) );
-#endif
}
+#endif
void tst_QFocusEvent::checkReason_Popup()
{