From 1298a2f8c44db73918dbc5398f266eed22002356 Mon Sep 17 00:00:00 2001 From: Gustavo Romero Date: Sat, 17 Apr 2021 13:42:21 -0300 Subject: [PATCH] =?UTF-8?q?[=C2=B5TVM]=20Zephyr:=20Add=20STM32F746=20disco?= =?UTF-8?q?=20board=20as=20a=20test=20platform=20(#7863)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Add STM32F746 Discovery board as test platform so tests can run against it by using: $ pytest test_zephyr.py --microtvm-platforms=stm32f746xx_disco Since that board has the same MCU identifier as the ST Nucleo board, the test platform identifier for Nucleo board is renamed and a suffix _nucleo is added to differentiate it from the ST Disco board. Signed-off-by: Gustavo Romero --- tests/micro/zephyr/conftest.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/tests/micro/zephyr/conftest.py b/tests/micro/zephyr/conftest.py index edea313f76652..83a76e7bbc5d1 100644 --- a/tests/micro/zephyr/conftest.py +++ b/tests/micro/zephyr/conftest.py @@ -24,7 +24,8 @@ "host": ("host", "qemu_x86"), "host_riscv32": ("host", "qemu_riscv32"), "host_riscv64": ("host", "qemu_riscv64"), - "stm32f746xx": ("stm32f746xx", "nucleo_f746zg"), + "stm32f746xx_nucleo": ("stm32f746xx", "nucleo_f746zg"), + "stm32f746xx_disco": ("stm32f746xx", "stm32f746g_disco"), "nrf5340dk": ("nrf5340dk", "nrf5340dk_nrf5340_cpuapp"), }