aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/quick/qquicktext/tst_qquicktext.cpp
diff options
context:
space:
mode:
authorLars Knoll <lars.knoll@digia.com>2018-05-02 11:41:37 +0200
committerLars Knoll <lars.knoll@qt.io>2018-05-02 14:21:04 +0000
commit93e9bf9ce75ddfd85c1e6f8852505fbeed5c77b2 (patch)
tree9d5bcb4bc974aa795b112b568ff1dc67ee00d8d2 /tests/auto/quick/qquicktext/tst_qquicktext.cpp
parent61d04ded2b3f5ca968ed6379a72b0abf2fb49b46 (diff)
Skip tests that are currently asserting on macOS
Task-number: QTBUG-68047 Change-Id: Ia75d0db01b89fea87ba23a3144d88bef663cd3d6 Reviewed-by: Simon Hausmann <simon.hausmann@qt.io>
Diffstat (limited to 'tests/auto/quick/qquicktext/tst_qquicktext.cpp')
-rw-r--r--tests/auto/quick/qquicktext/tst_qquicktext.cpp3
1 files changed, 3 insertions, 0 deletions
diff --git a/tests/auto/quick/qquicktext/tst_qquicktext.cpp b/tests/auto/quick/qquicktext/tst_qquicktext.cpp
index 6b861af8a6..48069ab8c5 100644
--- a/tests/auto/quick/qquicktext/tst_qquicktext.cpp
+++ b/tests/auto/quick/qquicktext/tst_qquicktext.cpp
@@ -1000,6 +1000,9 @@ static inline QByteArray msgNotLessThan(int n1, int n2)
void tst_qquicktext::hAlignImplicitWidth()
{
+#ifdef Q_OS_MACOS
+ QSKIP("this test currently crashes on MacOS. See QTBUG-68047");
+#endif
QQuickView view(testFileUrl("hAlignImplicitWidth.qml"));
view.setFlags(view.flags() | Qt::WindowStaysOnTopHint); // Prevent being obscured by other windows.
view.show();