diff options
Diffstat (limited to 'test/v4l2_device/double_open.cpp')
-rw-r--r-- | test/v4l2_device/double_open.cpp | 38 |
1 files changed, 38 insertions, 0 deletions
diff --git a/test/v4l2_device/double_open.cpp b/test/v4l2_device/double_open.cpp new file mode 100644 index 00000000..ca2b2014 --- /dev/null +++ b/test/v4l2_device/double_open.cpp @@ -0,0 +1,38 @@ +/* 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 = dev_->open(); + if (!ret) { + std::cout << "Double open erroneously succeeded" << std::endl; + dev_->close(); + return TestFail; + } + + return TestPass; + } +}; + +} /* namespace */ + +TEST_REGISTER(DoubleOpen); |