Skip to content

Commit f1730dd

Browse files
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 <noreply@anthropic.com>
1 parent 4448705 commit f1730dd

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

Lib/test/test_termios.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -117,7 +117,7 @@ def test_tcsetattr_errors(self):
117117
@support.skip_android_selinux('tcsendbreak')
118118
def test_tcsendbreak(self):
119119
with skip_enotty_error(self, 'tcsendbreak',
120-
('freebsd', 'netbsd', 'cygwin')):
120+
('freebsd', 'netbsd', 'openbsd', 'cygwin')):
121121
termios.tcsendbreak(self.fd, 1)
122122
termios.tcsendbreak(self.stream, 1)
123123

0 commit comments

Comments
 (0)