summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTim Blechmann <tim@klingt.org>2024-04-09 15:33:54 +0800
committerTim Blechmann <tim@klingt.org>2024-04-17 18:56:53 +0800
commitb7a08529c8f26a377be3682f573f9aa321e16487 (patch)
tree63263e481004de4811d5e68d6dae8402cb759089
parent38c85f0fb274f9dd989bd7601791209589fab94a (diff)
QCamera: disable multi-camera test on linux
These tests failed on my workstation with cameras attached: the first could be opened, the second could not. Both with gstreamer and ffmpeg. Pick-to: 6.5 6.7 Change-Id: I1f149a12fdc664625e5f33470445c26df11391d6 Reviewed-by: Artem Dyomin <artem.dyomin@qt.io> Reviewed-by: Mikko Hallamaa <mikko.hallamaa@qt.io> Reviewed-by: Jøger Hansegård <joger.hansegard@qt.io> Reviewed-by: Lars Sutterud <lars.sutterud@qt.io>
-rw-r--r--tests/auto/integration/qcamerabackend/tst_qcamerabackend.cpp4
1 files changed, 4 insertions, 0 deletions
diff --git a/tests/auto/integration/qcamerabackend/tst_qcamerabackend.cpp b/tests/auto/integration/qcamerabackend/tst_qcamerabackend.cpp
index 72e11e6a3..a7d3d6932 100644
--- a/tests/auto/integration/qcamerabackend/tst_qcamerabackend.cpp
+++ b/tests/auto/integration/qcamerabackend/tst_qcamerabackend.cpp
@@ -244,6 +244,10 @@ void tst_QCameraBackend::testCameraStartParallel()
QSKIP("Multi-camera feature is currently not supported on Android. "
"Cannot open same device twice.");
#endif
+#ifdef Q_OS_LINUX
+ QSKIP("Multi-camera feature is currently not supported on Linux. "
+ "Cannot open same device twice.");
+#endif
if (noCamera)
QSKIP("No camera available");