2020-04-02 22:16:28 -04:00
|
|
|
# This test ensures that the scheduler doesn't trigger any assertions
|
|
|
|
# while dealing with concurrent access from multiple threads.
|
|
|
|
|
|
|
|
import _thread
|
2022-08-18 02:57:45 -04:00
|
|
|
import time
|
2020-04-02 22:16:28 -04:00
|
|
|
import micropython
|
|
|
|
import gc
|
|
|
|
|
|
|
|
try:
|
|
|
|
micropython.schedule
|
|
|
|
except AttributeError:
|
|
|
|
print("SKIP")
|
|
|
|
raise SystemExit
|
|
|
|
|
|
|
|
gc.disable()
|
|
|
|
|
2020-10-27 09:54:30 -04:00
|
|
|
_NUM_TASKS = 10000
|
|
|
|
_TIMEOUT_MS = 10000
|
|
|
|
|
2020-04-02 22:16:28 -04:00
|
|
|
n = 0 # How many times the task successfully ran.
|
2020-10-27 09:54:30 -04:00
|
|
|
t = None # Start time of test, assigned here to preallocate entry in globals dict.
|
2020-04-02 22:16:28 -04:00
|
|
|
|
|
|
|
|
|
|
|
def task(x):
|
|
|
|
global n
|
|
|
|
n += 1
|
|
|
|
|
|
|
|
|
|
|
|
def thread():
|
|
|
|
while True:
|
|
|
|
try:
|
|
|
|
micropython.schedule(task, None)
|
|
|
|
except RuntimeError:
|
|
|
|
# Queue full, back off.
|
2022-08-18 02:57:45 -04:00
|
|
|
time.sleep_ms(10)
|
2020-04-02 22:16:28 -04:00
|
|
|
|
|
|
|
|
|
|
|
for i in range(8):
|
|
|
|
_thread.start_new_thread(thread, ())
|
|
|
|
|
|
|
|
# Wait up to 10 seconds for 10000 tasks to be scheduled.
|
2022-08-18 02:57:45 -04:00
|
|
|
t = time.ticks_ms()
|
|
|
|
while n < _NUM_TASKS and time.ticks_diff(time.ticks_ms(), t) < _TIMEOUT_MS:
|
2020-04-02 22:16:28 -04:00
|
|
|
pass
|
|
|
|
|
|
|
|
if n < _NUM_TASKS:
|
|
|
|
# Not all the tasks were scheduled, likely the scheduler stopped working.
|
|
|
|
print(n)
|
|
|
|
else:
|
|
|
|
print("PASS")
|