zephyr/tests/subsys/bindesc/reading/testcase.yaml
Yonatan Schachter 31fe9645ea tests: Add tests for bindesc reading
Added tests for bindesc reading, to test reading on multiple C/C++
standards. Only RAM and flash backends are tested, as the flash
simulator can't simulate a memory mapped flash.

Signed-off-by: Yonatan Schachter <yonatan.schachter@gmail.com>
2024-10-11 13:20:49 -04:00

24 lines
478 B
YAML

common:
platform_allow:
- native_sim
integration_platforms:
- native_sim
tags: bindesc
tests:
bindesc.read:
platform_allow:
- native_posix
- native_sim
bindesc.read.c99:
extra_args: CSTD="c99"
bindesc.read.c11:
extra_args: CSTD="c11"
bindesc.read.c17:
extra_args: CSTD="c17"
bindesc.read.gnu99:
extra_args: CSTD="gnu99"
bindesc.read.gnu11:
extra_args: CSTD="gnu11"
bindesc.read.gnu17:
extra_args: CSTD="gnu17"