zephyr/tests/subsys/logging/log_syst/Kconfig
Aastha Grover 3358c6392a tests: logging: syst: Add testcases for mipi syst.
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>
2022-05-12 07:39:06 -04:00

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"