From: Serhiy Storchaka Date: Wed, 22 Jul 2026 04:09:38 +0000 (+0300) Subject: gh-154394: Skip test_tcsendbreak on OpenBSD (GH-154397) X-Git-Url: http://git.ipfire.org/gitweb/index.cgi?a=commitdiff_plain;h=f1730ddc474d9d103c4f85ecc4bb1e995a268ed9;p=thirdparty%2FPython%2Fcpython.git gh-154394: Skip test_tcsendbreak on OpenBSD (GH-154397) tcsendbreak() is not supported for pseudo-terminals on OpenBSD. Co-authored-by: Claude Opus 4.8 --- diff --git a/Lib/test/test_termios.py b/Lib/test/test_termios.py index 3dcf5bd13791..84062e464d6c 100644 --- a/Lib/test/test_termios.py +++ b/Lib/test/test_termios.py @@ -117,7 +117,7 @@ class TestFunctions(unittest.TestCase): @support.skip_android_selinux('tcsendbreak') def test_tcsendbreak(self): with skip_enotty_error(self, 'tcsendbreak', - ('freebsd', 'netbsd', 'cygwin')): + ('freebsd', 'netbsd', 'openbsd', 'cygwin')): termios.tcsendbreak(self.fd, 1) termios.tcsendbreak(self.stream, 1)