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:
parent
f6af48416d
commit
88518009ce
@ -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()
|
||||
|
Loading…
Reference in New Issue
Block a user