summaryrefslogtreecommitdiff
path: root/src/gstreamer/gstlibcamera-utils.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/gstreamer/gstlibcamera-utils.cpp')
0 files changed, 0 insertions, 0 deletions
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)