summaryrefslogtreecommitdiff
path: root/Documentation/guides/ipa.rst
diff options
context:
space:
mode:
authorHirokazu Honda <hiroh@chromium.org>2021-06-10 17:25:34 +0900
committerJacopo Mondi <jacopo@jmondi.org>2021-06-14 14:10:43 +0200
commitb8302cd44ae235d18d6cf645ac1ed928a8f68c96 (patch)
tree0aa5b9240235e77998a58cec302caf3094c737c7 /Documentation/guides/ipa.rst
parentefd5fb7288a7a9c72f3ae7b1256c2b808aaf525f (diff)
libcamera: controls: Add sensor test pattern mode
The control is used to report available sensor test pattern modes and also specify the mode to sensor. Signed-off-by: Hirokazu Honda <hiroh@chromium.org> Reviewed-by: Jacopo Mondi <jacopo@jmondi.org> Reviewed-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com> Signed-off-by: Jacopo Mondi <jacopo@jmondi.org>
Diffstat (limited to 'Documentation/guides/ipa.rst')
0 files changed, 0 insertions, 0 deletions
63 64 65 66 67 68 69 70 71 72 73 74 75
/* SPDX-License-Identifier: GPL-2.0-or-later */
/*
 * Copyright (C) 2020, Google Inc.
 *
 * results.cpp - Test result aggregator
 */

#include "results.h"

#include <iostream>

void Results::add(const Result &result)
{
	if (result.first == Pass)
		passed_++;
	else if (result.first == Fail)
		failed_++;
	else if (result.first == Skip)
		skipped_++;

	printResult(result);
}

void Results::add(Status status, const std::string &message)
{
	add({ status, message });
}

void Results::fail(const std::string &message)
{
	add(Fail, message);
}

void Results::pass(const std::string &message)
{
	add(Pass, message);
}

void Results::skip(const std::string &message)
{
	add(Skip, message);
}

int Results::summary() const
{
	if (failed_ + passed_ + skipped_ != planned_) {
		std::cout << "Planned and executed number of tests differ "
			  << failed_ + passed_ + skipped_ << " executed "
			  << planned_ << " planned" << std::endl;

		return -EINVAL;
	}

	std::cout << planned_ << " tests executed, "
		  << passed_ << " tests passed, "
		  << skipped_ << " tests skipped and "
		  << failed_ << " tests failed " << std::endl;

	return 0;
}

void Results::printResult(const Result &result)
{
	std::string prefix;

	/* \todo Make parsable as TAP. */
	if (result.first == Pass)
		prefix = "PASS";
	else if (result.first == Fail)
		prefix = "FAIL";
	else if (result.first == Skip)
		prefix = "SKIP";

	std::cout << "- " << prefix << ": " << result.second << std::endl;
}