https://github.com/python/cpython/commit/f1730ddc474d9d103c4f85ecc4bb1e995a268ed9 commit: f1730ddc474d9d103c4f85ecc4bb1e995a268ed9 branch: main author: Serhiy Storchaka <[email protected]> committer: serhiy-storchaka <[email protected]> date: 2026-07-22T04:09:38Z summary:
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 <[email protected]> files: M Lib/test/test_termios.py diff --git a/Lib/test/test_termios.py b/Lib/test/test_termios.py index 3dcf5bd13791dc..84062e464d6caf 100644 --- a/Lib/test/test_termios.py +++ b/Lib/test/test_termios.py @@ -117,7 +117,7 @@ def test_tcsetattr_errors(self): @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) _______________________________________________ Python-checkins mailing list -- [email protected] To unsubscribe send an email to [email protected] https://mail.python.org/mailman3//lists/python-checkins.python.org Member address: [email protected]
