mirror of
https://github.com/python/cpython.git
synced 2025-10-09 16:34:44 +00:00
bpo-29240: Skip test_readline.test_nonascii() (#4968)
Skip the test which fails on FreeBSD with POSIX locale. Skip the test to fix FreeBSD buildbots, until a fix can be found, so the buildbots can catch other regressions.
This commit is contained in:
parent
550ee051d6
commit
424315fa86
1 changed files with 2 additions and 0 deletions
|
@ -152,6 +152,8 @@ print("History length:", readline.get_current_history_length())
|
|||
output = run_pty(self.auto_history_script.format(False))
|
||||
self.assertIn(b"History length: 0\r\n", output)
|
||||
|
||||
@unittest.skipIf(True,
|
||||
"FIXME: test broken by bpo-29240")
|
||||
def test_nonascii(self):
|
||||
try:
|
||||
readline.add_history("\xEB\xEF")
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue