From: Serhiy Storchaka Date: Wed, 22 Jul 2026 04:39:28 +0000 (+0300) Subject: [3.13] gh-154394: Skip test_tcsendbreak on OpenBSD (GH-154397) (GH-154413) X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=f5d1bde6a98b6763bb806c118517f6cd5861452d;p=thirdparty%2FPython%2Fcpython.git [3.13] gh-154394: Skip test_tcsendbreak on OpenBSD (GH-154397) (GH-154413) tcsendbreak() is not supported for pseudo-terminals on OpenBSD. (cherry picked from commit f1730ddc474d9d103c4f85ecc4bb1e995a268ed9) Co-authored-by: Claude Opus 4.8 --- diff --git a/Lib/test/test_termios.py b/Lib/test/test_termios.py index 5fd62b30263a..cbc922bb3e31 100644 --- a/Lib/test/test_termios.py +++ b/Lib/test/test_termios.py @@ -97,7 +97,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