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>
This commit is contained in:
Damien George 2023-08-14 19:37:01 +10:00
parent f6af48416d
commit 88518009ce
1 changed files with 4 additions and 1 deletions

View File

@ -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()