summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorFurkan Onder <furkanonder@protonmail.com>2024-09-13 16:27:54 (GMT)
committerGitHub <noreply@github.com>2024-09-13 16:27:54 (GMT)
commit9f42b62db998131bb5cd555e2fa72ba7e06e3130 (patch)
tree8e48ac607ed69e527ee1bd796030342414f7e335
parent8810e286fa48876422d1b230208911decbead294 (diff)
downloadcpython-9f42b62db998131bb5cd555e2fa72ba7e06e3130.zip
cpython-9f42b62db998131bb5cd555e2fa72ba7e06e3130.tar.gz
cpython-9f42b62db998131bb5cd555e2fa72ba7e06e3130.tar.bz2
gh-124030: Skip test_tcsendbreak on NetBSD for ENOTTY error (GH-124031)
-rw-r--r--Lib/test/test_termios.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/test/test_termios.py b/Lib/test/test_termios.py
index 22e397c..b98cbd5 100644
--- a/Lib/test/test_termios.py
+++ b/Lib/test/test_termios.py
@@ -94,7 +94,7 @@ class TestFunctions(unittest.TestCase):
try:
termios.tcsendbreak(self.fd, 1)
except termios.error as exc:
- if exc.args[0] == errno.ENOTTY and sys.platform.startswith('freebsd'):
+ if exc.args[0] == errno.ENOTTY and sys.platform.startswith(('freebsd', "netbsd")):
self.skipTest('termios.tcsendbreak() is not supported '
'with pseudo-terminals (?) on this platform')
raise