summaryrefslogtreecommitdiff
path: root/test/test.cpp
blob: 4e7779e750d5668706ef15af0e3dcec4f1cb2c6f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
/* 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()
{
	cleanup();
}

int Test::execute()
{
	int ret;

	ret = init();
	if (ret < 0)
		return ret;

	return run();
}