Age | Commit message (Collapse) | Author | |
---|---|---|---|
2019-01-02 | test: Move include definitions to libtest | Kieran Bingham | |
With the libtest functionality moved to its own library folder, the definitions for test includes should reasonably live there too. The libtest subdir should always remain the first entry in the test/meson.build file. Signed-off-by: Kieran Bingham <kieran.bingham@ideasonboard.com> Reviewed-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com> Signed-off-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com> | |||
2019-01-01 | test: libtest: Return all non-zero init values | Kieran Bingham | |
A skipped test is currently defined as returning 77. If this is returned by the init stage, currently the execute call will continue on to the run stage. Correct this such that any non-zero return code from the init phase will abort the test. Signed-off-by: Kieran Bingham <kieran.bingham@ideasonboard.com> Reviewed-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com> Signed-off-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com> | |||
2019-01-01 | test: libtest: Ad/* SPDX-License-Identifier: BSD-2-Clause */
/*
* Copyright (C) 2019, Raspberry Pi (Trading) Limited
*
* algorithm.cpp - ISP control algorithms
*/
#include "algorithm.hpp"
using namespace RPiController;
void Algorithm::Read([[maybe_unused]] boost::property_tree::ptree const ¶ms)
{
}
void Algorithm::Initialise() {}
void |