Adding testcases for mipi syst logging format. Excluding problem architectures from the testcase as SYS-T does not support 64-bit or big endian architectures. The posix arch is excluded as it generates numerous anomalous runtime messages because it does not have the means to determine when data resides in the rodata section. Signed-off-by: Aastha Grover <aastha.grover@intel.com>
21 lines
485 B
Plaintext
21 lines
485 B
Plaintext
# SPDX-License-Identifier: Apache-2.0
|
|
# Copyright (c) 2022 Intel Corporation
|
|
|
|
config LOG_BACKEND_MOCK
|
|
bool "MOCK backend"
|
|
help
|
|
When enabled MOCK backend is used for logging. It is
|
|
used to capture the output buffer used for validation of
|
|
log messages. It will not output any logs.
|
|
|
|
if LOG_BACKEND_MOCK
|
|
|
|
backend = MOCK
|
|
backend-str = mock
|
|
source "subsys/logging/Kconfig.template.log_format_config"
|
|
|
|
endif # LOG_BACKEND_MOCK
|
|
|
|
# Include Zephyr's Kconfig.
|
|
source "Kconfig.zephyr"
|