test: v4l2_device: Add StreamOn/StreamOff test

Provide a small test to exercise the streamOn() and streamOff() calls.
8 buffers are requested locally.

Signed-off-by: Kieran Bingham <kieran.bingham@ideasonboard.com>
Signed-off-by: Jacopo Mondi <jacopo@jmondi.org>
Signed-off-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
Signed-off-by: Niklas Söderlund <niklas.soderlund@ragnatech.se>
This commit is contained in:
Kieran Bingham
2019-01-24 17:43:08 +00:00
committed by Laurent Pinchart
parent 374673f84a
commit d2046d863b
2 changed files with 36 additions and 0 deletions
+1
View File
@@ -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
+35
View File
@@ -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);