summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBradley T. Hughes <bradley.hughes@nokia.com>2012-01-17 14:23:15 +0100
committerQt by Nokia <qt-info@nokia.com>2012-01-20 08:49:43 +0100
commit0d125002406c7cc3b97369f74b0cf5e00e5671d0 (patch)
treecb851899761a4a7a59728a00bf87047687c160a3
parent06ff72e02d8231981fafc7ae0e2404911223886a (diff)
Ignore failures from tst_QWidget_window on Mac OS X
The tst_windowFilePathAndwindowTitle test currently fails, so mark the failures as expected failures for now. Task-number: QTBUG-23682 Change-Id: If64a82c919b218b5c1c38ce5228081bb46fe70ac Reviewed-by: Jason McDonald <jason.mcdonald@nokia.com>
-rw-r--r--tests/auto/widgets/kernel/qwidget_window/tst_qwidget_window.cpp7
1 files changed, 7 insertions, 0 deletions
diff --git a/tests/auto/widgets/kernel/qwidget_window/tst_qwidget_window.cpp b/tests/auto/widgets/kernel/qwidget_window/tst_qwidget_window.cpp
index b6f62379a6..ed2f0ed429 100644
--- a/tests/auto/widgets/kernel/qwidget_window/tst_qwidget_window.cpp
+++ b/tests/auto/widgets/kernel/qwidget_window/tst_qwidget_window.cpp
@@ -233,12 +233,19 @@ void tst_QWidget_window::tst_windowFilePathAndwindowTitle()
widget.setWindowTitle(indyWindowTitle);
}
widget.setWindowFilePath(filePath);
+#ifdef Q_OS_MAC
+ QEXPECT_FAIL("never Set Title, yes AppName", "QTBUG-23682", Continue);
+ QEXPECT_FAIL("set title after only, yes AppName", "QTBUG-23682", Continue);
+#endif
QCOMPARE(finalTitleBefore, widget.windowTitle());
QCOMPARE(widget.windowFilePath(), filePath);
if (setWindowTitleAfter) {
widget.setWindowTitle(indyWindowTitle);
}
+#ifdef Q_OS_MAC
+ QEXPECT_FAIL("never Set Title, yes AppName", "QTBUG-23682", Continue);
+#endif
QCOMPARE(finalTitleAfter, widget.windowTitle());
QCOMPARE(widget.windowFilePath(), filePath);
}