libcamera/test/v4l2_device/double_open.cpp
Kieran Bingham ff4e882399 test: v4l2_device: Rename dev_ to capture_
Change the variable name globally throughout the tests.

Repair the V4L2DeviceTest constructor style, as checkstyle complained.

Reviewed-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
Signed-off-by: Kieran Bingham <kieran.bingham@ideasonboard.com>
2019-02-13 17:27:33 +00:00

38 lines
597 B
C++

/* SPDX-License-Identifier: GPL-2.0-or-later */
/*
* Copyright (C) 2019, Google Inc.
*
* libcamera V4L2 API tests
*/
#include <iostream>
#include "v4l2_device_test.h"
namespace {
class DoubleOpen : public V4L2DeviceTest
{
protected:
int run()
{
int ret;
/*
* Expect failure: The device has already been opened by the
* V4L2DeviceTest base class
*/
ret = capture_->open();
if (!ret) {
std::cout << "Double open erroneously succeeded" << std::endl;
capture_->close();
return TestFail;
}
return TestPass;
}
};
} /* namespace */
TEST_REGISTER(DoubleOpen);