]>
Commit | Line | Data |
---|---|---|
92015767 HS |
1 | // SPDX-License-Identifier: GPL-2.0+ |
2 | /* | |
3 | * Copyright (c) 2020, Heinrich Schuchardt <[email protected]> | |
4 | * | |
5 | * Test continuation of log messages. | |
6 | */ | |
7 | ||
92015767 | 8 | #include <console.h> |
401d1c4f | 9 | #include <asm/global_data.h> |
92015767 HS |
10 | #include <test/log.h> |
11 | #include <test/test.h> | |
12 | #include <test/suites.h> | |
13 | #include <test/ut.h> | |
14 | ||
15 | DECLARE_GLOBAL_DATA_PTR; | |
16 | ||
92015767 HS |
17 | static 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; | |
9ad7a6c2 | 28 | log(LOGC_ARCH, LOGL_ERR, "ea%d\n", 1); |
92015767 HS |
29 | 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; | |
9ad7a6c2 SG |
33 | ut_assertok(ut_check_console_line(uts, "ERR.arch, ea1")); |
34 | ut_assertok(ut_check_console_line(uts, "ERR.arch, cc2")); | |
92015767 HS |
35 | ut_assertok(ut_check_console_end(uts)); |
36 | ||
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")); | |
46 | ut_assertok(ut_check_console_end(uts)); | |
47 | ||
9ad7a6c2 SG |
48 | /* 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")); | |
58 | ut_assertok(ut_check_console_end(uts)); | |
59 | ||
92015767 HS |
60 | return 0; |
61 | } | |
62 | LOG_TEST(log_test_cont); |