From fac471e812a988905aa2c6a0914f5fc9a72ee111 Mon Sep 17 00:00:00 2001 From: Laurent Pinchart Date: Sun, 27 Oct 2019 19:20:39 +0200 Subject: test: Extract CameraTest class out of camera tests to libtest MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Many tests other than the camera/ tests use a camera. To increase code sharing, move the base CameraTest class to the test library. The class becomes a helper that doesn't inherit from Test anymore (to avoid diamond inheritance issues when more such helpers will exist). Signed-off-by: Laurent Pinchart Reviewed-by: Niklas Söderlund --- test/camera/camera_test.cpp | 48 --------------------------------------------- 1 file changed, 48 deletions(-) delete mode 100644 test/camera/camera_test.cpp (limited to 'test/camera/camera_test.cpp') diff --git a/test/camera/camera_test.cpp b/test/camera/camera_test.cpp deleted file mode 100644 index 101e31fb..00000000 --- a/test/camera/camera_test.cpp +++ /dev/null @@ -1,48 +0,0 @@ -/* SPDX-License-Identifier: GPL-2.0-or-later */ -/* - * Copyright (C) 2019, Google Inc. - * - * libcamera Camera API tests - */ - -#include - -#include "camera_test.h" - -using namespace libcamera; -using namespace std; - -int CameraTest::init() -{ - cm_ = new CameraManager(); - - if (cm_->start()) { - cout << "Failed to start camera manager" << endl; - return TestFail; - } - - camera_ = cm_->get("VIMC Sensor B"); - if (!camera_) { - cout << "Can not find VIMC camera" << endl; - return TestSkip; - } - - /* Sanity check that the camera has streams. */ - if (camera_->streams().empty()) { - cout << "Camera has no stream" << endl; - return TestFail; - } - - return TestPass; -} - -void CameraTest::cleanup() -{ - if (camera_) { - camera_->release(); - camera_.reset(); - } - - cm_->stop(); - delete cm_; -} -- cgit v1.2.1