Files
opensbi/lib/sbi/tests/sbi_unit_test.c
Samuel Holland df1c100001 treewide: Make carray arrays const and NULL-terminated
This allows the compiler to generate significantly better code, because
it does not have to maintain either the loop counter or loop limit. Plus
there are half as many symbols to relocate. This also simplifies passing
carray arrays to helper functions.

Signed-off-by: Samuel Holland <samuel.holland@sifive.com>
Reviewed-by: Anup Patel <anup@brainfault.org>
2024-11-28 17:09:17 +05:30

53 lines
1.2 KiB
C

/*
* SPDX-License-Identifier: BSD-2-Clause
*
* Author: Ivan Orlov <ivan.orlov0322@gmail.com>
*/
#include <sbi/sbi_unit_test.h>
#include <sbi/sbi_types.h>
#include <sbi/sbi_console.h>
#define ANSI_COLOR_GREEN "\x1b[32m"
#define ANSI_COLOR_RED "\x1b[31m"
#define ANSI_COLOR_RESET "\x1b[0m"
extern struct sbiunit_test_suite *const sbi_unit_tests[];
static void run_test_suite(struct sbiunit_test_suite *suite)
{
struct sbiunit_test_case *s_case;
u32 count_pass = 0, count_fail = 0;
sbi_printf("## Running test suite: %s\n", suite->name);
if (suite->init)
suite->init();
s_case = suite->cases;
while (s_case->test_func) {
s_case->test_func(s_case);
if (s_case->failed)
count_fail++;
else
count_pass++;
sbi_printf("%s[%s]%s %s\n",
s_case->failed ? ANSI_COLOR_RED : ANSI_COLOR_GREEN,
s_case->failed ? "FAILED" : "PASSED",
ANSI_COLOR_RESET, s_case->name);
s_case++;
}
sbi_printf("%u PASSED / %u FAILED / %u TOTAL\n", count_pass, count_fail,
count_pass + count_fail);
}
void run_all_tests(void)
{
u32 i;
sbi_printf("\n# Running SBIUNIT tests #\n");
for (i = 0; sbi_unit_tests[i]; i++)
run_test_suite(sbi_unit_tests[i]);
}