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
commit 79704620f8d7efe34984e67621bfa00ccbf72127 Author: Masayuki Ishikawa <[email protected]> AuthorDate: Mon Feb 6 16:44:57 2023 +0900 tools: ci: Fix testrun/utins/common.py for sabrelite (QEMU) Summary: - I noticed that nuttx crashes if DEBUG_ASSERTIONS=y - This commit fixes this issue by changing QEMU options Impact: - None Testing: - Tested with QEMU Signed-off-by: Masayuki Ishikawa <[email protected]> --- tools/ci/testrun/utils/common.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/ci/testrun/utils/common.py b/tools/ci/testrun/utils/common.py index 17fd7855f3..c1f5db7a0f 100644 --- a/tools/ci/testrun/utils/common.py +++ b/tools/ci/testrun/utils/common.py @@ -214,7 +214,7 @@ class start: "bash", [ "-c", - "qemu-system-arm -M sabrelite -smp 1 -bios none -kernel ./nuttx -nographic | tee %s" + "qemu-system-arm -semihosting -M sabrelite -m 1024 -smp 4 -kernel ./nuttx -nographic | tee %s" % self.log, ], )
