-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
samples: thrift: hello_client: clean up hello_client sample.yaml
Tested all configurations against programes compiled for the host which are built with `.../hello_server/Makefile`. Signed-off-by: Christopher Friedt <[email protected]>
- Loading branch information
Showing
2 changed files
with
32 additions
and
38 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,36 +1,27 @@ | ||
sample: | ||
description: Hello Thrift sample | ||
name: hello thrift | ||
description: Hello Thrift client sample | ||
name: hello thrift client | ||
common: | ||
tags: thrift cpp | ||
# FIXME: zephyrproject-rtos/zephyr#45100 | ||
arch_exclude: posix | ||
filter: TOOLCHAIN_HAS_NEWLIB == 1 | ||
toolchain_exclude: xcc | ||
arch_exclude: arc xtensa | ||
# qemu_x86 exluded due to missing long double functions in SDK | ||
# See https://github.com/zephyrproject-rtos/sdk-ng/issues/603 | ||
platform_exclude: qemu_x86 | ||
integration_platforms: | ||
- mps2_an385 | ||
- qemu_cortex_a53 | ||
- qemu_riscv32 | ||
- qemu_riscv64_smp | ||
- qemu_x86_64 | ||
tags: thrift cpp sample | ||
tests: | ||
thrift.ThriftTest.newlib.binaryProtocol: | ||
tags: newlib | ||
thrift.ThriftTest.newlib.compactProtocol: | ||
sample.thrift.hello.client.binaryProtocol: | ||
platform_allow: mps2_an385 qemu_cortex_a53 qemu_x86_64 qemu_riscv32 qemu_riscv64_smp | ||
integration_platforms: | ||
- qemu_x86_64 | ||
sample.thrift.hello.client.compactProtocol: | ||
extra_configs: | ||
- CONFIG_THRIFT_COMPACT_PROTOCOL=y | ||
tags: newlib | ||
thrift.ThriftTest.newlib.zlibTransport: | ||
platform_allow: mps2_an385 qemu_cortex_a53 qemu_x86_64 qemu_riscv32 qemu_riscv64_smp | ||
integration_platforms: | ||
- qemu_x86_64 | ||
sample.thrift.hello.client.zlibTransport: | ||
extra_configs: | ||
- CONFIG_THRIFT_ZLIB_TRANSPORT=y | ||
tags: newlib | ||
thrift.ThriftTest.newlib.tlsTransport: | ||
platform_allow: mps2_an385 qemu_cortex_a53 qemu_x86_64 qemu_riscv32 qemu_riscv64_smp | ||
integration_platforms: | ||
- qemu_x86_64 | ||
sample.thrift.hello.client.tlsTransport: | ||
extra_args: OVERLAY_CONFIG="../hello_common/overlay-tls.conf" | ||
tags: newlib | ||
# thrift.hello.native: | ||
# arch_allow: posix | ||
# tags: native | ||
platform_allow: mps2_an385 qemu_cortex_a53 qemu_x86_64 qemu_riscv32 qemu_riscv64_smp | ||
integration_platforms: | ||
- qemu_x86_64 |