diff options
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; -} |