https://github.com/python/cpython/commit/a84e780707d3baa3b9f73981d8b7e293eb10d076
commit: a84e780707d3baa3b9f73981d8b7e293eb10d076
branch: main
author: Serhiy Storchaka <[email protected]>
committer: serhiy-storchaka <[email protected]>
date: 2026-07-22T05:01:25Z
summary:

gh-154414: Skip test_tcsendbreak on DragonFly BSD (GH-154415)

tcsendbreak() is not supported for pseudo-terminals on DragonFly BSD.

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 84062e464d6caf..ede23ec38860e1 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', 'openbsd', 'cygwin')):
+                               ('freebsd', 'netbsd', 'openbsd', 'dragonfly', 
'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]

Reply via email to