[libcamera-devel] [PATCH 07/27] test: v4l2_device: Add StreamOn/StreamOff test
Laurent Pinchart
laurent.pinchart at ideasonboard.com
Wed Feb 6 07:07:58 CET 2019
From: Kieran Bingham <kieran.bingham at ideasonboard.com>
Provide a small test to exercise the streamOn() and streamOff() calls.
8 buffers are requested locally.
Signed-off-by: Kieran Bingham <kieran.bingham at ideasonboard.com>
Signed-off-by: Jacopo Mondi <jacopo at jmondi.org>
Signed-off-by: Laurent Pinchart <laurent.pinchart at ideasonboard.com>
Signed-off-by: Niklas Söderlund <niklas.soderlund at ragnatech.se>
---
test/v4l2_device/meson.build | 1 +
test/v4l2_device/stream_on_off.cpp | 35 ++++++++++++++++++++++++++++++
2 files changed, 36 insertions(+)
create mode 100644 test/v4l2_device/stream_on_off.cpp
diff --git a/test/v4l2_device/meson.build b/test/v4l2_device/meson.build
index b6b672611d60..cbaa79da9b81 100644
--- a/test/v4l2_device/meson.build
+++ b/test/v4l2_device/meson.build
@@ -3,6 +3,7 @@
v4l2_device_tests = [
[ 'double_open', 'double_open.cpp' ],
[ 'request_buffers', 'request_buffers.cpp' ],
+ [ 'stream_on_off', 'stream_on_off.cpp' ],
]
foreach t : v4l2_device_tests
diff --git a/test/v4l2_device/stream_on_off.cpp b/test/v4l2_device/stream_on_off.cpp
new file mode 100644
index 000000000000..b564d2a2ab67
--- /dev/null
+++ b/test/v4l2_device/stream_on_off.cpp
@@ -0,0 +1,35 @@
+/* SPDX-License-Identifier: GPL-2.0-or-later */
+/*
+ * Copyright (C) 2019, Google Inc.
+ *
+ * libcamera V4L2 API tests
+ */
+
+#include "v4l2_device_test.h"
+
+class StreamOnStreamOffTest : public V4L2DeviceTest
+{
+protected:
+ int run()
+ {
+ const unsigned int bufferCount = 8;
+
+ createBuffers(bufferCount);
+
+ int ret = dev_->exportBuffers(bufferCount, &pool_);
+ if (ret)
+ return TestFail;
+
+ ret = dev_->streamOn();
+ if (ret)
+ return TestFail;
+
+ ret = dev_->streamOff();
+ if (ret)
+ return TestFail;
+
+ return TestPass;
+ }
+};
+
+TEST_REGISTER(StreamOnStreamOffTest);
--
Regards,
Laurent Pinchart
More information about the libcamera-devel
mailing list