summaryrefslogtreecommitdiffstats
path: root/tests
diff options
context:
space:
mode:
authorPaul Lemire <paul.lemire@kdab.com>2022-03-22 11:00:27 +0100
committerPaul Lemire <paul.lemire@kdab.com>2022-03-22 11:11:17 +0100
commitd157e4d0c47d3dc07204e4a81c4e4ab6b77fd278 (patch)
treed56b9773279467a363c4272781a1dc5b73d599e9 /tests
parent2949a3457f73d6f8e6a50f39cbb9baecfda93018 (diff)
Skip QScene2D unit tests following changes of behavior introduced in qtbase
The test is crashing as a result of the changes made by commit ba6c1d2785ca6d8a8b162abcd9d978ab0c52ea2d in qtbase (QProperty: fix threading issues) Will investigate a real fix later. Change-Id: If7d77bae00edbb16d3a1cd11f5969f1bc540ac81 Task-number: QTBUG-101949 Reviewed-by: Jani Heikkinen <jani.heikkinen@qt.io>
Diffstat (limited to 'tests')
-rw-r--r--tests/auto/render/scene2d/tst_scene2d.cpp4
1 files changed, 4 insertions, 0 deletions
diff --git a/tests/auto/render/scene2d/tst_scene2d.cpp b/tests/auto/render/scene2d/tst_scene2d.cpp
index 53075c692..a71d2f54a 100644
--- a/tests/auto/render/scene2d/tst_scene2d.cpp
+++ b/tests/auto/render/scene2d/tst_scene2d.cpp
@@ -123,6 +123,8 @@ private Q_SLOTS:
void checkInitializeFromPeer()
{
+ QSKIP("Skipped as crashing since 6.4.0");
+
// GIVEN
Qt3DRender::Quick::QScene2D frontend;
TestRenderer renderer;
@@ -158,6 +160,7 @@ private Q_SLOTS:
void checkSceneChangeEvents()
{
+ QSKIP("Skipped as crashing since 6.4.0");
// GIVEN
Qt3DRender::Quick::QScene2D frontend;
QScopedPointer<Scene2D> backendScene2d(new Scene2D());
@@ -207,6 +210,7 @@ private Q_SLOTS:
void testCoordinateCalculation()
{
+ QSKIP("Skipped as crashing since 6.4.0");
// GIVEN
qputenv("QT3D_SCENE2D_DISABLE_RENDERING", "1");