]> granicus.if.org Git - python/commitdiff
bpo-29240: Skip test_readline.test_nonascii() (#4968)
authorVictor Stinner <victor.stinner@gmail.com>
Thu, 21 Dec 2017 23:09:26 +0000 (00:09 +0100)
committerGitHub <noreply@github.com>
Thu, 21 Dec 2017 23:09:26 +0000 (00:09 +0100)
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.

Lib/test/test_readline.py

index b4c25dee9d3c20a9f0e3e4986bc32677ed7ecd70..28ea38b747ed53e7e94d8af664371f949586ea7b 100644 (file)
@@ -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")