summaryrefslogtreecommitdiffstats
path: root/tests
diff options
context:
space:
mode:
authorVille Voutilainen <ville.voutilainen@qt.io>2022-12-19 21:08:50 +0200
committerVille Voutilainen <ville.voutilainen@qt.io>2022-12-19 22:12:50 +0200
commit0f1c9494899e94d86785b12c8c60743d2e829a58 (patch)
tree0b9c0cad13c6093571b678948e543a1ccce32508 /tests
parente2aac33d04804c3c8f4f554c206a8cb9dd14611e (diff)
Skip tst_raycasting on QNX
Task-number: QTBUG-107694 Change-Id: I4028dc107427c955342903239d4d80674e7109e4 Pick-to: 6.5 6.4 Reviewed-by: Mike Krus <mike.krus@kdab.com>
Diffstat (limited to 'tests')
-rw-r--r--tests/auto/render/raycasting/tst_raycasting.cpp8
1 files changed, 8 insertions, 0 deletions
diff --git a/tests/auto/render/raycasting/tst_raycasting.cpp b/tests/auto/render/raycasting/tst_raycasting.cpp
index 88a5ca030..359404817 100644
--- a/tests/auto/render/raycasting/tst_raycasting.cpp
+++ b/tests/auto/render/raycasting/tst_raycasting.cpp
@@ -24,6 +24,7 @@ public:
~tst_RayCasting() {}
private Q_SLOTS:
+ void initTestCase();
void shouldReturnValidHandle();
void shouldReturnResultForEachHandle();
void shouldReturnAllResults();
@@ -41,6 +42,13 @@ private:
QList<Sphere> boundingVolumes;
};
+void tst_RayCasting::initTestCase()
+{
+#if defined Q_OS_QNX
+ QSKIP("This test times out on QNX (QTBUG-107694)");
+#endif
+}
+
void tst_RayCasting::shouldIntersect_data()
{
QTest::addColumn<QRay3D>("ray");