diff options
Diffstat (limited to 'test/camera/camera_test.cpp')
-rw-r--r-- | test/camera/camera_test.cpp | 48 |
1 files changed, 0 insertions, 48 deletions
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 <iostream> - -#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_; -} |