1# SPDX-License-Identifier: Apache-2.0 2# Copyright (c) 2022 Meta 3 4source "Kconfig.zephyr" 5 6config THRIFTTEST_SERVER_STACK_SIZE 7 int "ThriftTest Server stack size" 8 default 2048 9 10config THRIFTTEST_LOG_LEVEL 11 int "ThriftTest log level" 12 default 4 13 14config THRIFT_COMPACT_PROTOCOL 15 bool "Use TCompactProtocol for tests" 16 depends on THRIFT 17 default y 18 help 19 Enable this option to include TCompactProtocol in tests 20