diff options
author | Peter Harper <peter.harper@raspberrypi.com> | 2025-03-18 17:45:48 +0000 |
---|---|---|
committer | Damien George <damien@micropython.org> | 2025-05-12 16:29:51 +1000 |
commit | 03da15575f088085e66be641c7e5ffd5cb2cc318 (patch) | |
tree | 020fed54a7a66924a62fffe83bd4db0b09174b56 | |
parent | 2a4f1c9f0fd4f582cb22b25e6fcf7521bfa4f268 (diff) |
tests/ports/rp2: Update machine idle test to revert skip for RP2350.
This reverts commit b42bb911c663dc90575d6a7fe3ea4760b6559372.
Signed-off-by: Peter Harper <peter.harper@raspberrypi.com>
-rw-r--r-- | tests/ports/rp2/rp2_machine_idle.py | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/tests/ports/rp2/rp2_machine_idle.py b/tests/ports/rp2/rp2_machine_idle.py index 3135110b8..f9c282847 100644 --- a/tests/ports/rp2/rp2_machine_idle.py +++ b/tests/ports/rp2/rp2_machine_idle.py @@ -1,4 +1,3 @@ -import sys import machine import time @@ -18,11 +17,6 @@ import time # Verification uses the average idle time, as individual iterations will always # have outliers due to interrupts, scheduler, etc. -# RP2350 currently fails this test because machine.idle() resumes immediately. -if "RP2350" in sys.implementation._machine: - print("SKIP") - raise SystemExit - ITERATIONS = 500 total = 0 |