From 957e6b05e69524d1b03f3ccb446b433085a4de8e Mon Sep 17 00:00:00 2001 From: Damien George Date: Sun, 14 Sep 2025 19:26:19 +1000 Subject: [PATCH] tools/ci.sh: Enable all possible tests on zephyr CI. With the recent improvements to the test suite, and fixes for `pow`, the full test suite can now be run (and appropriate tests will be automatically skipped). Signed-off-by: Damien George --- tools/ci.sh | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/tools/ci.sh b/tools/ci.sh index f55b004c45..b10f3d12dc 100755 --- a/tools/ci.sh +++ b/tools/ci.sh @@ -983,9 +983,7 @@ function ci_zephyr_build { function ci_zephyr_run_tests { docker exec zephyr-ci west build -p auto -b qemu_cortex_m3 -- -DCONF_FILE=prj_minimal.conf - # Issues with zephyr tests: - # - inf_nan_arith fails pow(-1, nan) test - (cd tests && ./run-tests.py -t execpty:"qemu-system-arm -cpu cortex-m3 -machine lm3s6965evb -nographic -monitor null -serial pty -kernel ../ports/zephyr/build/zephyr/zephyr.elf" -d basics float --exclude inf_nan_arith) + (cd tests && ./run-tests.py -t execpty:"qemu-system-arm -cpu cortex-m3 -machine lm3s6965evb -nographic -monitor null -serial pty -kernel ../ports/zephyr/build/zephyr/zephyr.elf") } ########################################################################################