diff options
author | Kieran Bingham <kieran.bingham@ideasonboard.com> | 2018-12-20 15:40:37 +0000 |
---|---|---|
committer | Laurent Pinchart <laurent.pinchart@ideasonboard.com> | 2019-01-01 18:24:22 +0200 |
commit | 3900b0771ecb160f26a24b4a9bf72e827256e7da (patch) | |
tree | 7955c54f01b6f65aa664f1399e36eba7eb1347ab /test/test.cpp | |
parent | b43f56c46d65cc983936498492a85e7e377c212b (diff) |
test: Move test objects to libtest
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>
Diffstat (limited to 'test/test.cpp')
-rw-r--r-- | test/test.cpp | 31 |
1 files changed, 0 insertions, 31 deletions
diff --git a/test/test.cpp b/test/test.cpp deleted file mode 100644 index 1bb6ebcb..00000000 --- a/test/test.cpp +++ /dev/null @@ -1,31 +0,0 @@ -/* 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; -} |