summaryrefslogtreecommitdiff
path: root/tests/wipy/wlan/machine.py
diff options
context:
space:
mode:
authorDamien George <damien@micropython.org>2024-01-18 16:32:31 +1100
committerDamien George <damien@micropython.org>2024-01-22 11:48:27 +1100
commit7bbcee3cf09a08199b3ffefb6c5e37208cba5f0a (patch)
tree6260794d34aaef18fcf5a6521ff3d103bc962dbf /tests/wipy/wlan/machine.py
parentf93ffc2875c57ce3b8a608ebf5ae9050aa62f069 (diff)
tests: Move port-specific test directories into tests/ports/ directory.
To keep them all together, mirroring the top-level directory structure. Signed-off-by: Damien George <damien@micropython.org>
Diffstat (limited to 'tests/wipy/wlan/machine.py')
-rw-r--r--tests/wipy/wlan/machine.py42
1 files changed, 0 insertions, 42 deletions
diff --git a/tests/wipy/wlan/machine.py b/tests/wipy/wlan/machine.py
deleted file mode 100644
index f69b117b7..000000000
--- a/tests/wipy/wlan/machine.py
+++ /dev/null
@@ -1,42 +0,0 @@
-"""
-machine test for the CC3200 based boards.
-"""
-
-import machine
-import os
-from network import WLAN
-
-mch = os.uname().machine
-if not "LaunchPad" in mch and not "WiPy" in mch:
- raise Exception("Board not supported!")
-
-wifi = WLAN()
-
-print(machine)
-machine.idle()
-print(machine.freq() == (80000000,))
-print(machine.unique_id() == wifi.mac())
-
-machine.main("main.py")
-
-rand_nums = []
-for i in range(0, 100):
- rand = machine.rng()
- if rand not in rand_nums:
- rand_nums.append(rand)
- else:
- print("RNG number repeated")
- break
-
-for i in range(0, 10):
- machine.idle()
-
-print("Active")
-
-print(machine.reset_cause() >= 0)
-print(machine.wake_reason() >= 0)
-
-try:
- machine.main(123456)
-except:
- print("Exception")