1# SPDX-License-Identifier: Apache-2.0 2# Copyright (c) 2022 Meta 3 4mainmenu "Strerror test parameters" 5 6source "Kconfig.zephyr" 7 8config MINIMAL_LIBC_DISABLE_STRING_ERROR_TABLE 9 depends on MINIMAL_LIBC 10 bool 11 default y if !MINIMAL_LIBC_STRING_ERROR_TABLE 12 default n if MINIMAL_LIBC_STRING_ERROR_TABLE 13 help 14 This option is only here to simplify conditional expressions 15 in test_strerror.c rather than inverting logic for the 16 global MINIMAL_LIBC_STRING_ERROR_TABLE option. 17