From 125d19ce7be05c91be332ba088cc38ada8020b2f Mon Sep 17 00:00:00 2001 From: Damien George Date: Thu, 26 Jun 2025 12:25:01 +1000 Subject: tests/micropython: Add missing SystemExit after printing SKIP. The test runner expects `print("SKIP")` to be followed by `raise SystemExit`. Otherwise it waits for 10 seconds for the target to do a soft reset before timing out and continuing. Signed-off-by: Damien George --- tests/micropython/stack_use.py | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'tests/micropython/stack_use.py') diff --git a/tests/micropython/stack_use.py b/tests/micropython/stack_use.py index 266885d9d..640bb8b2f 100644 --- a/tests/micropython/stack_use.py +++ b/tests/micropython/stack_use.py @@ -3,5 +3,6 @@ import micropython if not hasattr(micropython, "stack_use"): print("SKIP") -else: - print(type(micropython.stack_use())) # output varies + raise SystemExit + +print(type(micropython.stack_use())) # output varies -- cgit v1.2.3