summaryrefslogtreecommitdiffstats
path: root/tests
diff options
context:
space:
mode:
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");