https://github.com/python/cpython/commit/06a1b0c2c356a9004e4abc5a06d9df46e0f4cd0d commit: 06a1b0c2c356a9004e4abc5a06d9df46e0f4cd0d branch: 3.13 author: Miss Islington (bot) <[email protected]> committer: Yhg1s <[email protected]> date: 2024-09-23T17:28:10-07:00 summary:
[3.13] gh-124030: Skip test_tcsendbreak on NetBSD for ENOTTY error (GH-124031) (#124063) gh-124030: Skip test_tcsendbreak on NetBSD for ENOTTY error (GH-124031) (cherry picked from commit 9f42b62db998131bb5cd555e2fa72ba7e06e3130) Co-authored-by: Furkan Onder <[email protected]> files: M Lib/test/test_termios.py diff --git a/Lib/test/test_termios.py b/Lib/test/test_termios.py index 58698ffac2d981..11928f04a8a893 100644 --- a/Lib/test/test_termios.py +++ b/Lib/test/test_termios.py @@ -94,7 +94,7 @@ def test_tcsendbreak(self): try: termios.tcsendbreak(self.fd, 1) except termios.error as exc: - if exc.args[0] == errno.ENOTTY and sys.platform.startswith('freebsd'): + if exc.args[0] == errno.ENOTTY and sys.platform.startswith(('freebsd', "netbsd")): self.skipTest('termios.tcsendbreak() is not supported ' 'with pseudo-terminals (?) on this platform') raise _______________________________________________ Python-checkins mailing list -- [email protected] To unsubscribe send an email to [email protected] https://mail.python.org/mailman3/lists/python-checkins.python.org/ Member address: [email protected]
