tests/extmod/select_poll_eintr.py: Improve robustness of test.

Increase allowed range of dt_ms, and print it in case of failure.

Signed-off-by: Damien George <damien@micropython.org>
pull/12224/head
Damien George 2023-08-14 19:37:01 +10:00
rodzic f6af48416d
commit 88518009ce
1 zmienionych plików z 4 dodań i 1 usunięć

Wyświetl plik

@ -41,7 +41,10 @@ t0 = time.time_ns()
result = poller.poll(400)
dt_ms = (time.time_ns() - t0) / 1e6
print("result:", result)
print("dt in range:", 380 <= dt_ms <= 500)
if 380 <= dt_ms <= 600:
print("dt in range")
else:
print("dt not in range:", dt_ms)
# Clean up.
s.close()