From 96bb97a54f4ad1e22e3e995447fea428258069a9 Mon Sep 17 00:00:00 2001 From: Daniel Leung Date: Mon, 19 Aug 2024 12:45:48 -0700 Subject: [PATCH] tests: thread_analyzer: disable QEMU icount This disables QEMU icount for all the simulated platforms in the allowed list. With icount enabled, the printout from the thread analyzer would be continuous and non-stop instead of the default once every 60 seconds. Besides, the console harness only needs one, and these is no need to waste CPU cycles and memory for processing the extra ones. Signed-off-by: Daniel Leung --- tests/subsys/debug/thread_analyzer/testcase.yaml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/tests/subsys/debug/thread_analyzer/testcase.yaml b/tests/subsys/debug/thread_analyzer/testcase.yaml index 58cdca64ca5..7395a274f99 100644 --- a/tests/subsys/debug/thread_analyzer/testcase.yaml +++ b/tests/subsys/debug/thread_analyzer/testcase.yaml @@ -11,6 +11,8 @@ common: - qemu_x86_64 - qemu_riscv32 - qemu_riscv64 + extra_configs: + - CONFIG_QEMU_ICOUNT=n tags: - debug - thread_analyzer