aboutsummaryrefslogtreecommitdiffstats
path: root/test
diff options
context:
space:
mode:
authorTom Jones <thj@freebsd.org>2024-02-07 13:28:58 +0000
committerOle Tr�an <otroan@employees.org>2024-03-26 15:13:34 +0000
commit853cc9f2ad3ee52cbdd891fb09d51c25678baed0 (patch)
treea981e1d041ddb4b81b88bb9357a8f3d9b397dff1 /test
parentb3ee84d0bb531f0600e3c038e78680c083e5bb77 (diff)
tests: Use errno value rather than a specific int
For portability we use errno defines rather than explicit int values when checking for errors. Type: improvement Change-Id: Ib5fc1db357da150d008d5a11bef5dbc7ec354cfb Signed-off-by: Tom Jones <thj@freebsd.org>
Diffstat (limited to 'test')
-rw-r--r--test/test_punt.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/test/test_punt.py b/test/test_punt.py
index e6829d42bb3..8ee43f1ed73 100644
--- a/test/test_punt.py
+++ b/test/test_punt.py
@@ -6,6 +6,7 @@ import threading
import copy
import fcntl
import time
+import errno
try:
import unittest2 as unittest
@@ -55,7 +56,7 @@ class serverSocketThread(threading.Thread):
# Ethernet
self.rx_pkts.append(Ether(data[8:]))
except IOError as e:
- if e.errno == 11:
+ if e.errno == errno.EAGAIN:
# nothing to receive, stop running or sleep a little
if self.stop_running:
break