From: Serhiy Storchaka Date: Wed, 22 Jul 2026 05:45:25 +0000 (+0300) Subject: [3.13] gh-154414: Skip test_tcsendbreak on DragonFly BSD (GH-154415) (GH-154424) X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=f68ff8741697bcbea663fe43ff6e456f24140f97;p=thirdparty%2FPython%2Fcpython.git [3.13] gh-154414: Skip test_tcsendbreak on DragonFly BSD (GH-154415) (GH-154424) tcsendbreak() is not supported for pseudo-terminals on DragonFly BSD. (cherry picked from commit a84e780707d3baa3b9f73981d8b7e293eb10d076) Co-authored-by: Claude Opus 4.8 --- diff --git a/Lib/test/test_termios.py b/Lib/test/test_termios.py index cbc922bb3e31..aa562b25cbcd 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', 'openbsd')): + if exc.args[0] == errno.ENOTTY and sys.platform.startswith(('freebsd', 'netbsd', 'openbsd', 'dragonfly')): self.skipTest('termios.tcsendbreak() is not supported ' 'with pseudo-terminals (?) on this platform') raise