Browse Source

tests/extmod: Skip soft machine.Timer test on esp32 port.

Also rename the test to reflect that it's a soft timer test.

Signed-off-by: Angus Gratton <angus@redyak.com.au>
pull/15540/head
Angus Gratton 3 months ago
committed by Damien George
parent
commit
9ba04cc756
  1. 9
      tests/extmod/machine_soft_timer.py

9
tests/extmod/machine_timer.py → tests/extmod/machine_soft_timer.py

@ -1,4 +1,11 @@
# test machine.Timer
# test "soft" machine.Timer (no hardware ID)
import sys
if sys.platform == "esp32":
print("SKIP") # TODO: Implement soft timers for esp32 port
raise SystemExit
try:
import time, machine as machine
Loading…
Cancel
Save