From: Serhiy Storchaka Date: Wed, 22 Jul 2026 05:01:25 +0000 (+0300) Subject: gh-154414: Skip test_tcsendbreak on DragonFly BSD (GH-154415) X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=a84e780707d3baa3b9f73981d8b7e293eb10d076;p=thirdparty%2FPython%2Fcpython.git 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 --- diff --git a/Lib/test/test_termios.py b/Lib/test/test_termios.py index 84062e464d6..ede23ec3886 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', 'openbsd', 'cygwin')): + ('freebsd', 'netbsd', 'openbsd', 'dragonfly', 'cygwin')): termios.tcsendbreak(self.fd, 1) termios.tcsendbreak(self.stream, 1)