summaryrefslogtreecommitdiff
path: root/tests/extmod/socket_udp_nonblock.py
diff options
context:
space:
mode:
Diffstat (limited to 'tests/extmod/socket_udp_nonblock.py')
-rw-r--r--tests/extmod/socket_udp_nonblock.py17
1 files changed, 17 insertions, 0 deletions
diff --git a/tests/extmod/socket_udp_nonblock.py b/tests/extmod/socket_udp_nonblock.py
new file mode 100644
index 000000000..f7ce5f344
--- /dev/null
+++ b/tests/extmod/socket_udp_nonblock.py
@@ -0,0 +1,17 @@
+# test non-blocking UDP sockets
+
+try:
+ import socket, errno
+except ImportError:
+ print("SKIP")
+ raise SystemExit
+
+
+s = socket.socket(socket.AF_INET, socket.SOCK_DGRAM)
+s.bind(socket.getaddrinfo("127.0.0.1", 8000)[0][-1])
+s.settimeout(0)
+
+try:
+ s.recv(1)
+except OSError as er:
+ print("EAGAIN:", er.errno == errno.EAGAIN)