summaryrefslogtreecommitdiff
path: root/test/libtest/test.cpp
blob: fd9f3d74d6cee93d505a83dc3162bcf4cc15818e (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
29
30
31
32
33
/* SPDX-License-Identifier: GPL-2.0-or-later */
/*
 * Copyright (C) 2018, Google Inc.
 *
 * test.cpp - libcamera test base class
 */

#include <stdlib.h>

#include "test.h"

Test::Test()
{
}

Test::~Test()
{
}

int Test::execute()
{
	int ret;

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

	ret = run();

	cleanup();

	return ret;
}