We build libcamera with -Wno-unused-parameter and this doesn't cause much issue internally. However, it prevents catching unused parameters in inline functions defined in public headers. This can lead to compilation warnings for applications compiled without -Wno-unused-parameter. To catch those issues, remove -Wno-unused-parameter and fix all the related warnings with [[maybe_unused]]. Signed-off-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com> Reviewed-by: Kieran Bingham <kieran.bingham@ideasonboard.com> Reviewed-by: Niklas Söderlund <niklas.soderlund@ragnatech.se>
38 lines
617 B
C++
38 lines
617 B
C++
/* SPDX-License-Identifier: GPL-2.0-or-later */
|
|
/*
|
|
* Copyright (C) 2018, Google Inc.
|
|
*
|
|
* test.h - libcamera test base class
|
|
*/
|
|
#ifndef __TEST_TEST_H__
|
|
#define __TEST_TEST_H__
|
|
|
|
#include <sstream>
|
|
|
|
enum TestStatus {
|
|
TestPass = 0,
|
|
TestFail = -1,
|
|
TestSkip = 77,
|
|
};
|
|
|
|
class Test
|
|
{
|
|
public:
|
|
Test();
|
|
virtual ~Test();
|
|
|
|
int execute();
|
|
|
|
protected:
|
|
virtual int init() { return 0; }
|
|
virtual int run() = 0;
|
|
virtual void cleanup() {}
|
|
};
|
|
|
|
#define TEST_REGISTER(klass) \
|
|
int main([[maybe_unused]] int argc, [[maybe_unused]] char *argv[]) \
|
|
{ \
|
|
return klass().execute(); \
|
|
}
|
|
|
|
#endif /* __TEST_TEST_H__ */
|