From: Furkan Onder Date: Fri, 13 Sep 2024 16:27:54 +0000 (+0300) Subject: gh-124030: Skip test_tcsendbreak on NetBSD for ENOTTY error (GH-124031) X-Git-Tag: v3.14.0a1~481 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=9f42b62db998131bb5cd555e2fa72ba7e06e3130;p=thirdparty%2FPython%2Fcpython.git gh-124030: Skip test_tcsendbreak on NetBSD for ENOTTY error (GH-124031) --- diff --git a/Lib/test/test_termios.py b/Lib/test/test_termios.py index 22e397c7a409..b98cbd553dac 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