File: test.cpp

package info (click to toggle)
libcamera 0.6.0-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 15,336 kB
  • sloc: cpp: 83,873; python: 18,076; ansic: 12,651; sh: 1,267; makefile: 60
file content (38 lines) | stat: -rw-r--r-- 399 bytes parent folder | download | duplicates (5)
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
34
35
36
37
38
/* SPDX-License-Identifier: GPL-2.0-or-later */
/*
 * Copyright (C) 2018, Google Inc.
 *
 * libcamera test base class
 */

#include <stdlib.h>

#include "test.h"

Test::Test()
{
}

Test::~Test()
{
}

void Test::setArgs([[maybe_unused]] int argc, char *argv[])
{
	self_ = argv[0];
}

int Test::execute()
{
	int ret;

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

	ret = run();

	cleanup();

	return ret;
}