blob: 396605214e4b89802834aa1a9baec363f6529821 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
/* SPDX-License-Identifier: GPL-2.0-or-later */
/*
* Copyright (C) 2020, Google Inc.
*
* tests.h - Test modules
*/
#ifndef __LC_COMPLIANCE_TESTS_H__
#define __LC_COMPLIANCE_TESTS_H__
#include <libcamera/libcamera.h>
#include "results.h"
Results testSingleStream(std::shared_ptr<libcamera::Camera> camera);
#endif /* __LC_COMPLIANCE_TESTS_H__ */
|