blob: 7734e927f9811c88770a697237da699bae22bfd7 [file] [log] [blame]
Heinrich Schuchardtb5a828e2021-01-04 08:02:56 +01001// SPDX-License-Identifier: GPL-2.0+
2/*
3 * Copyright (c) 2021, Heinrich Schuchardt <xypron.glpk@gmx.de>
4 *
5 * Test continuation of log messages using pr_cont().
6 */
7
Heinrich Schuchardtb5a828e2021-01-04 08:02:56 +01008#include <console.h>
9#include <test/log.h>
10#include <test/test.h>
11#include <test/suites.h>
12#include <test/ut.h>
Simon Glass3ba929a2020-10-30 21:38:53 -060013#include <asm/global_data.h>
Heinrich Schuchardtb5a828e2021-01-04 08:02:56 +010014#include <linux/printk.h>
15
16#define BUFFSIZE 64
17
Heinrich Schuchardtb5a828e2021-01-04 08:02:56 +010018DECLARE_GLOBAL_DATA_PTR;
19
20static int log_test_pr_cont(struct unit_test_state *uts)
21{
22 int log_fmt;
23 int log_level;
24
25 log_fmt = gd->log_fmt;
26 log_level = gd->default_log_level;
27
28 /* Write two messages, the second continuing the first */
29 gd->log_fmt = BIT(LOGF_MSG);
30 gd->default_log_level = LOGL_INFO;
Heinrich Schuchardtb5a828e2021-01-04 08:02:56 +010031 pr_err("ea%d ", 1);
32 pr_cont("cc%d\n", 2);
33 gd->default_log_level = log_level;
34 gd->log_fmt = log_fmt;
35 gd->flags &= ~GD_FLG_RECORD;
36 ut_assertok(ut_check_console_line(uts, "ea1 cc2"));
Simon Glassc579bd42024-08-22 07:58:03 -060037 ut_assert_console_end();
Heinrich Schuchardtb5a828e2021-01-04 08:02:56 +010038
39 return 0;
40}
41LOG_TEST(log_test_pr_cont);