The vimc driver delivers frames much faster then the vivid driver hence most v4l2 device tests complete much quicker if vimc is used. The only v4l2 device test which can't be switched is buffer_sharing as it needs to import buffers somewhere, something vimc do not support. With this change I manage to shave of almost 7 seconds for each run of all v4l2 device tests. Signed-off-by: Niklas Söderlund <niklas.soderlund@ragnatech.se> Reviewed-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
41 lines
666 B
C++
41 lines
666 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
|
|
{
|
|
public:
|
|
DoubleOpen()
|
|
: V4L2DeviceTest("vimc", "Raw Capture 0") {}
|
|
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);
|