]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
[3.14] gh-154394: Skip test_tcsendbreak on OpenBSD (GH-154397) (GH-154412)
authorSerhiy Storchaka <storchaka@gmail.com>
Wed, 22 Jul 2026 04:43:51 +0000 (07:43 +0300)
committerGitHub <noreply@github.com>
Wed, 22 Jul 2026 04:43:51 +0000 (04:43 +0000)
tcsendbreak() is not supported for pseudo-terminals on OpenBSD.
(cherry picked from commit f1730ddc474d9d103c4f85ecc4bb1e995a268ed9)

Co-authored-by: Claude Opus 4.8 <noreply@anthropic.com>
Lib/test/test_termios.py

index ce8392a6ccdbd66fd9f23f421092095585c6b081..9fdf42c329521db43cb271941acebb88a6322e4e 100644 (file)
@@ -104,7 +104,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', "netbsd")):
+            if exc.args[0] == errno.ENOTTY and sys.platform.startswith(('freebsd', 'netbsd', 'openbsd')):
                 self.skipTest('termios.tcsendbreak() is not supported '
                               'with pseudo-terminals (?) on this platform')
             raise