Create a subdirectory to contain the libtest helper library. Define two variables to clarify when tests are aimed at public or internal components. Signed-off-by: Kieran Bingham <kieran.bingham@ideasonboard.com> Reviewed-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com> Signed-off-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
31 lines
310 B
C++
31 lines
310 B
C++
/* SPDX-License-Identifier: GPL-2.0-or-later */
|
|
/*
|
|
* Copyright (C) 2018, Google Inc.
|
|
*
|
|
* test.cpp - libcamera test base class
|
|
*/
|
|
|
|
#include "test.h"
|
|
|
|
Test::Test()
|
|
{
|
|
}
|
|
|
|
Test::~Test()
|
|
{
|
|
}
|
|
|
|
int Test::execute()
|
|
{
|
|
int ret;
|
|
|
|
ret = init();
|
|
if (ret < 0)
|
|
return ret;
|
|
|
|
ret = run();
|
|
|
|
cleanup();
|
|
|
|
return ret;
|
|
}
|