diff options
author | Victor Stinner <victor.stinner@gmail.com> | 2017-12-21 23:09:26 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-12-21 23:09:26 (GMT) |
commit | 424315fa865b43f67e36a40647107379adf031da (patch) | |
tree | aafc0953b4da168cc0ea2297d81a273dc8685391 /Lib | |
parent | 550ee051d605b909dd75ef686d8e1244a0994394 (diff) | |
download | cpython-424315fa865b43f67e36a40647107379adf031da.zip cpython-424315fa865b43f67e36a40647107379adf031da.tar.gz cpython-424315fa865b43f67e36a40647107379adf031da.tar.bz2 |
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.
Diffstat (limited to 'Lib')
-rw-r--r-- | Lib/test/test_readline.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/Lib/test/test_readline.py b/Lib/test/test_readline.py index b4c25de..28ea38b7 100644 --- a/Lib/test/test_readline.py +++ b/Lib/test/test_readline.py @@ -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") |