Some tests might require to have LIBCAMERA_IPA_FORCE_ISOLATION set to ensure they can test the IPA running in isolated mode. These tests are likely to leverage CameraTest. The environment variable should be set before CameraManager::start() call which happens in CameraTest's constructor. Hence, plumb the constructor with a flag so that the LIBCAMERA_IPA_FORCE_ISOLATION can be set before CameraManager::start(). Signed-off-by: Umang Jain <umang.jain@ideasonboard.com> Reviewed-by: Kieran Bingham <kieran.bingham@ideasonboard.com> Reviewed-by: Paul Elder <paul.elder@ideasonboard.com> Reviewed-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
29 lines
556 B
C++
29 lines
556 B
C++
/* SPDX-License-Identifier: GPL-2.0-or-later */
|
|
/*
|
|
* Copyright (C) 2019, Google Inc.
|
|
*
|
|
* camera_test.h - libcamera camera test base class
|
|
*/
|
|
#ifndef __LIBCAMERA_CAMERA_TEST_H__
|
|
#define __LIBCAMERA_CAMERA_TEST_H__
|
|
|
|
#include <memory>
|
|
|
|
#include <libcamera/camera.h>
|
|
#include <libcamera/camera_manager.h>
|
|
|
|
using namespace libcamera;
|
|
|
|
class CameraTest
|
|
{
|
|
public:
|
|
CameraTest(const char *name, bool isolate = false);
|
|
~CameraTest();
|
|
|
|
protected:
|
|
CameraManager *cm_;
|
|
std::shared_ptr<Camera> camera_;
|
|
int status_;
|
|
};
|
|
|
|
#endif /* __LIBCAMERA_CAMERA_TEST_H__ */
|