From 79704620f8d7efe34984e67621bfa00ccbf72127 Mon Sep 17 00:00:00 2001 From: Masayuki Ishikawa Date: Mon, 6 Feb 2023 16:44:57 +0900 Subject: [PATCH] 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 --- 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 17fd7855f32..c1f5db7a0f5 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, ], )