summaryrefslogtreecommitdiff
path: root/test/v4l2_device/stream_on_off.cpp
blob: b564d2a2ab677af96ad1bd21b90e2ccacf5323c6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
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);