summaryrefslogtreecommitdiffstats
path: root/tests
diff options
context:
space:
mode:
authorJakub Czapiga <jacz@semihalf.com>2021-06-14 09:32:11 +0200
committerPatrick Georgi <pgeorgi@google.com>2021-06-15 16:12:52 +0000
commitab0bcaf732a5b0afd70f19ae58eb1c89bbf9209f (patch)
tree72cefd090dd69dfb82a5a9e51080a82a1d22f066 /tests
parent2d2d61c7e1a70ff655c44f42065b31429fadd576 (diff)
downloadcoreboot-ab0bcaf732a5b0afd70f19ae58eb1c89bbf9209f.tar.gz
coreboot-ab0bcaf732a5b0afd70f19ae58eb1c89bbf9209f.tar.bz2
coreboot-ab0bcaf732a5b0afd70f19ae58eb1c89bbf9209f.zip
src/console/init.c: Make get_log_level static inline again
CB:55356 removed static inline declarations from get_log_level(). This commit puts them back. It also changes the method of accessing static symbols in tests/console/routing-test to source file inclusion like in CB:46458 to avoid changing tested source file. Signed-off-by: Jakub Czapiga <jacz@semihalf.com> Change-Id: Iaa5dcbccb327f819374967be51ef642b1fb25e7b Reviewed-on: https://review.coreboot.org/c/coreboot/+/55473 Reviewed-by: Patrick Georgi <pgeorgi@google.com> Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Diffstat (limited to 'tests')
-rw-r--r--tests/console/Makefile.inc4
-rw-r--r--tests/console/routing-test.c27
2 files changed, 18 insertions, 13 deletions
diff --git a/tests/console/Makefile.inc b/tests/console/Makefile.inc
index 2218652e9e06..0bbead09d945 100644
--- a/tests/console/Makefile.inc
+++ b/tests/console/Makefile.inc
@@ -4,11 +4,7 @@ tests-y += routing-with-cbmemcons-test
tests-y += routing-without-cbmemcons-test
routing-with-cbmemcons-test-srcs += tests/console/routing-test.c
-routing-with-cbmemcons-test-srcs += src/console/init.c
routing-with-cbmemcons-test-config += CONFIG_CONSOLE_CBMEM=1
-routing-with-cbmemcons-test-mocks += get_log_level
routing-without-cbmemcons-test-srcs += tests/console/routing-test.c
-routing-without-cbmemcons-test-srcs += src/console/init.c
routing-without-cbmemcons-test-config += CONFIG_CONSOLE_CBMEM=0
-routing-without-cbmemcons-test-mocks += get_log_level
diff --git a/tests/console/routing-test.c b/tests/console/routing-test.c
index 33bf167e25af..ea90342999fe 100644
--- a/tests/console/routing-test.c
+++ b/tests/console/routing-test.c
@@ -1,18 +1,13 @@
/* SPDX-License-Identifier: GPL-2.0-only */
+#include "../console/init.c"
+
#include <console/console.h>
#include <stdlib.h>
#include <string.h>
#include <stdint.h>
#include <tests/test.h>
-/* stub */
-static int log_level = 0;
-int get_log_level(void)
-{
- return log_level;
-}
-
struct log_combinations_t {
int log_lvl;
int msg_lvl;
@@ -45,16 +40,30 @@ struct log_combinations_t {
static void test_console_log_level(void **state)
{
for (int i = 0; i < ARRAY_SIZE(combinations); i++) {
- log_level = combinations[i].log_lvl;
+ console_loglevel = combinations[i].log_lvl;
assert_int_equal(combinations[i].behavior,
console_log_level(combinations[i].msg_lvl));
}
}
+static int setup_console_log_level(void **state)
+{
+ console_inited = 1;
+ return 0;
+}
+
+static int teardown_console_log_level(void **state)
+{
+ console_inited = 0;
+ return 0;
+}
+
int main(void)
{
const struct CMUnitTest tests[] = {
- cmocka_unit_test(test_console_log_level),
+ cmocka_unit_test_setup_teardown(test_console_log_level,
+ setup_console_log_level,
+ teardown_console_log_level),
};
return cmocka_run_group_tests(tests, NULL, NULL);