This is an automated email from the ASF dual-hosted git repository. xiaoxiang pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/nuttx.git
The following commit(s) were added to refs/heads/master by this push: new 1655537810 nuttx:fix tools-mm to heap 1655537810 is described below commit 1655537810826c9d905e307485e6b39617601317 Author: tengshuangshuang <tengshuangshu...@xiaomi.com> AuthorDate: Thu Jan 23 23:11:58 2025 +0800 nuttx:fix tools-mm to heap config-testing-heap is changed to conofig-testing-heap, so the citest tools need to change. Signed-off-by: tengshuangshuang <tengshuangshu...@xiaomi.com> --- boards/risc-v/qemu-rv/rv-virt/configs/citest/defconfig | 2 +- boards/sim/sim/sim/configs/citest/defconfig | 2 +- tools/ci/testrun/script/test_os/test_os.py | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/boards/risc-v/qemu-rv/rv-virt/configs/citest/defconfig b/boards/risc-v/qemu-rv/rv-virt/configs/citest/defconfig index a45afdc86a..4c3a48c565 100644 --- a/boards/risc-v/qemu-rv/rv-virt/configs/citest/defconfig +++ b/boards/risc-v/qemu-rv/rv-virt/configs/citest/defconfig @@ -129,8 +129,8 @@ CONFIG_TESTING_FMEMOPEN_TEST=y CONFIG_TESTING_FOPENCOOKIE_TEST=y CONFIG_TESTING_FSTEST=y CONFIG_TESTING_GETPRIME=y -CONFIG_TESTING_LTP=y CONFIG_TESTING_HEAP=y +CONFIG_TESTING_LTP=y CONFIG_TESTING_OPEN_MEMSTREAM=y CONFIG_TESTING_OSTEST=y CONFIG_TESTS_TESTSUITES=y diff --git a/boards/sim/sim/sim/configs/citest/defconfig b/boards/sim/sim/sim/configs/citest/defconfig index de78694b53..03a3b9c6c0 100644 --- a/boards/sim/sim/sim/configs/citest/defconfig +++ b/boards/sim/sim/sim/configs/citest/defconfig @@ -141,8 +141,8 @@ CONFIG_TESTING_FOPENCOOKIE_TEST=y CONFIG_TESTING_FSTEST=y CONFIG_TESTING_FSTEST_MOUNTPT="/tmp" CONFIG_TESTING_GETPRIME=y -CONFIG_TESTING_LTP=y CONFIG_TESTING_HEAP=y +CONFIG_TESTING_LTP=y CONFIG_TESTING_OPEN_MEMSTREAM=y CONFIG_TESTING_OSTEST=y CONFIG_TESTING_SCANFTEST=y diff --git a/tools/ci/testrun/script/test_os/test_os.py b/tools/ci/testrun/script/test_os/test_os.py index ac437a5d72..57d45977c2 100644 --- a/tools/ci/testrun/script/test_os/test_os.py +++ b/tools/ci/testrun/script/test_os/test_os.py @@ -41,7 +41,7 @@ def test_ostest(p): def test_mm(p): if p.board in do_not_support: pytest.skip("unsupported at {}".format(p.board)) - ret = p.sendCommand("mm", "TEST COMPLETE", timeout=120) + ret = p.sendCommand("heap", "TEST COMPLETE", timeout=120) assert ret == 0