These tests include: * ThriftTest - an upstream exercies for all Thrift facilities This code was merged from the following repository at the commit specified below, with minor formatting and coding-style modifications. https://github.com/zephyrproject-rtos/gsoc-2022-thrift e12e014d295918cc5ba0b4c507d1bf595a2f539a Signed-off-by: Chris Friedt <cfriedt@meta.com>
20 lines
410 B
Plaintext
20 lines
410 B
Plaintext
# SPDX-License-Identifier: Apache-2.0
|
|
# Copyright (c) 2022 Meta
|
|
|
|
source "Kconfig.zephyr"
|
|
|
|
config THRIFTTEST_SERVER_STACK_SIZE
|
|
int "ThriftTest Server stack size"
|
|
default 2048
|
|
|
|
config THRIFTTEST_LOG_LEVEL
|
|
int "ThriftTest log level"
|
|
default 4
|
|
|
|
config THRIFT_COMPACT_PROTOCOL
|
|
bool "Use TCompactProtocol for tests"
|
|
depends on THRIFT
|
|
default y
|
|
help
|
|
Enable this option to include TCompactProtocol in tests
|