aboutsummaryrefslogtreecommitdiffstats
path: root/tests
diff options
context:
space:
mode:
authorMaximilian Goldstein <max.goldstein@qt.io>2020-11-17 09:32:35 +0100
committerMaximilian Goldstein <max.goldstein@qt.io>2020-11-17 09:44:08 +0100
commit09ea2ca2a7501e515f086d7a0f4300fc965e4396 (patch)
tree250178e629b6ca5c1b0dde7306ac4462e121e64b /tests
parent3dc1339dba5c42d3891285a0a9f4b8d4b3195ce6 (diff)
tst_qqmlproperty: Skip crashing interfaceBinding
Task-number: QTBUG-84416 Change-Id: I79048233041802fe74e28b07def5ca0a3181c358 Reviewed-by: Fabian Kosmale <fabian.kosmale@qt.io>
Diffstat (limited to 'tests')
-rw-r--r--tests/auto/qml/qqmlproperty/tst_qqmlproperty.cpp3
1 files changed, 3 insertions, 0 deletions
diff --git a/tests/auto/qml/qqmlproperty/tst_qqmlproperty.cpp b/tests/auto/qml/qqmlproperty/tst_qqmlproperty.cpp
index 5a2a1be51f..1fd0b1a7d1 100644
--- a/tests/auto/qml/qqmlproperty/tst_qqmlproperty.cpp
+++ b/tests/auto/qml/qqmlproperty/tst_qqmlproperty.cpp
@@ -2146,6 +2146,9 @@ void tst_qqmlproperty::nullPropertyBinding()
void tst_qqmlproperty::interfaceBinding()
{
+#if defined(Q_CC_MSVC)
+ QSKIP("Test disabled due to crashing. See QTBUG-84416");
+#endif
qmlRegisterInterface<Interface>("Interface", 1);
qmlRegisterType<A>("io.qt.bugreports", 1, 0, "A");
qmlRegisterType<B>("io.qt.bugreports", 1, 0, "B");