ERROR: test_tcsendbreak (test.test_termios.TestFunctions.test_tcsendbreak)
File "Lib/test/test_termios.py", line 121, in test_tcsendbreak
termios.tcsendbreak(self.fd, 1)
termios.error: (25, 'Inappropriate ioctl for device')
with skip_enotty_error(self, 'tcsendbreak',
('freebsd', 'netbsd', 'cygwin')):
Bug report
test_termios.test_tcsendbreakfails on OpenBSD:tcsendbreak()is not supported for pseudo-terminals there. The test already skips this error, but only on FreeBSD, NetBSD and Cygwin:This is the same failure as gh-124030 on NetBSD; Cygwin was added to the same skip in gh-149879.
Linked PRs