blob: 32b1c792367661bde013f79d25b1bf6fe753dfcb [file] [log] [blame]
Heinrich Schuchardtaf5e6242020-10-17 14:31:59 +02001// SPDX-License-Identifier: GPL-2.0+
2/*
3 * Copyright (c) 2020, Heinrich Schuchardt <xypron.glpk@gmx.de>
4 *
5 * Test continuation of log messages.
6 */
7
Heinrich Schuchardtaf5e6242020-10-17 14:31:59 +02008#include <console.h>
Simon Glass3ba929a2020-10-30 21:38:53 -06009#include <asm/global_data.h>
Heinrich Schuchardtaf5e6242020-10-17 14:31:59 +020010#include <test/log.h>
11#include <test/test.h>
12#include <test/suites.h>
13#include <test/ut.h>
14
15DECLARE_GLOBAL_DATA_PTR;
16
Heinrich Schuchardtaf5e6242020-10-17 14:31:59 +020017static int log_test_cont(struct unit_test_state *uts)
18{
19 int log_fmt;
20 int log_level;
21
22 log_fmt = gd->log_fmt;
23 log_level = gd->default_log_level;
24
25 /* Write two messages, the second continuing the first */
26 gd->log_fmt = (1 << LOGF_CAT) | (1 << LOGF_LEVEL) | (1 << LOGF_MSG);
27 gd->default_log_level = LOGL_INFO;
Simon Glass5fc47e32021-01-20 20:10:53 -070028 log(LOGC_ARCH, LOGL_ERR, "ea%d\n", 1);
Heinrich Schuchardtaf5e6242020-10-17 14:31:59 +020029 log(LOGC_CONT, LOGL_CONT, "cc%d\n", 2);
30 gd->default_log_level = log_level;
31 gd->log_fmt = log_fmt;
32 gd->flags &= ~GD_FLG_RECORD;
Simon Glass5fc47e32021-01-20 20:10:53 -070033 ut_assertok(ut_check_console_line(uts, "ERR.arch, ea1"));
34 ut_assertok(ut_check_console_line(uts, "ERR.arch, cc2"));
Simon Glassc579bd42024-08-22 07:58:03 -060035 ut_assert_console_end();
Heinrich Schuchardtaf5e6242020-10-17 14:31:59 +020036
37 /* Write a third message which is not a continuation */
38 gd->log_fmt = (1 << LOGF_CAT) | (1 << LOGF_LEVEL) | (1 << LOGF_MSG);
39 gd->default_log_level = LOGL_INFO;
40 console_record_reset_enable();
41 log(LOGC_EFI, LOGL_INFO, "ie%d\n", 3);
42 gd->default_log_level = log_level;
43 gd->log_fmt = log_fmt;
44 gd->flags &= ~GD_FLG_RECORD;
45 ut_assertok(ut_check_console_line(uts, "INFO.efi, ie3"));
Simon Glassc579bd42024-08-22 07:58:03 -060046 ut_assert_console_end();
Heinrich Schuchardtaf5e6242020-10-17 14:31:59 +020047
Simon Glass5fc47e32021-01-20 20:10:53 -070048 /* Write two messages without a newline between them */
49 gd->log_fmt = (1 << LOGF_CAT) | (1 << LOGF_LEVEL) | (1 << LOGF_MSG);
50 gd->default_log_level = LOGL_INFO;
51 console_record_reset_enable();
52 log(LOGC_ARCH, LOGL_ERR, "ea%d ", 1);
53 log(LOGC_CONT, LOGL_CONT, "cc%d\n", 2);
54 gd->default_log_level = log_level;
55 gd->log_fmt = log_fmt;
56 gd->flags &= ~GD_FLG_RECORD;
57 ut_assertok(ut_check_console_line(uts, "ERR.arch, ea1 cc2"));
Simon Glassc579bd42024-08-22 07:58:03 -060058 ut_assert_console_end();
Simon Glass5fc47e32021-01-20 20:10:53 -070059
Heinrich Schuchardtaf5e6242020-10-17 14:31:59 +020060 return 0;
61}
62LOG_TEST(log_test_cont);