From f1730ddc474d9d103c4f85ecc4bb1e995a268ed9 Mon Sep 17 00:00:00 2001 From: Serhiy Storchaka Date: Wed, 22 Jul 2026 07:09:38 +0300 Subject: [PATCH] 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 --- Lib/test/test_termios.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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) -- 2.47.3