libcamera/test/v4l2_videodevice/double_open.cpp
Hirokazu Honda e0fd0169ad test: Omit extra semicolons
TEST_REGISTER macro is main function. The end semicolon with the
macro is unnecessary.

Signed-off-by: Hirokazu Honda <hiroh@chromium.org>
Reviewed-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
Reviewed-by: Niklas Söderlund <niklas.soderlund@ragnatech.se>
Reviewed-by: Kieran Bingham <kieran.bingham@ideasonboard.com>
Signed-off-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
2020-10-20 13:15:43 +03:00

41 lines
685 B
C++

/* SPDX-License-Identifier: GPL-2.0-or-later */
/*
* Copyright (C) 2019, Google Inc.
*
* libcamera V4L2 API tests
*/
#include <iostream>
#include "v4l2_videodevice_test.h"
namespace {
class DoubleOpen : public V4L2VideoDeviceTest
{
public:
DoubleOpen()
: V4L2VideoDeviceTest("vimc", "Raw Capture 0") {}
protected:
int run()
{
int ret;
/*
* Expect failure: The device has already been opened by the
* V4L2VideoDeviceTest 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)