218242d1de
Some targets (eg PYBV10) have the socket module but are unable to create UDP sockets without a registered NIC. So skip UDP tests on these targets. Signed-off-by: Damien George <damien@micropython.org>
22 lines
403 B
Python
22 lines
403 B
Python
# test non-blocking UDP sockets
|
|
|
|
try:
|
|
import socket, errno
|
|
except ImportError:
|
|
print("SKIP")
|
|
raise SystemExit
|
|
|
|
try:
|
|
s = socket.socket(socket.AF_INET, socket.SOCK_DGRAM)
|
|
s.bind(socket.getaddrinfo("127.0.0.1", 8000)[0][-1])
|
|
except OSError:
|
|
print("SKIP")
|
|
raise SystemExit
|
|
|
|
s.settimeout(0)
|
|
|
|
try:
|
|
s.recv(1)
|
|
except OSError as er:
|
|
print("EAGAIN:", er.errno == errno.EAGAIN)
|