summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorNir Soffer <nirsof@gmail.com>2017-07-08 14:34:27 (GMT)
committerBerker Peksag <berker.peksag@gmail.com>2017-07-08 14:34:27 (GMT)
commitaa6a4d6ed881f79c51fb91dd928ed9496737b420 (patch)
treea162c8ff7e4c6421745eb408445df8acb870fa93
parent223c7e70e48eb6eed4aab3906fbe32b098faafe3 (diff)
downloadcpython-aa6a4d6ed881f79c51fb91dd928ed9496737b420.zip
cpython-aa6a4d6ed881f79c51fb91dd928ed9496737b420.tar.gz
cpython-aa6a4d6ed881f79c51fb91dd928ed9496737b420.tar.bz2
bpo-29854: Skip history-size test on older readline (GH-2621)
Turns out that history-size was added in readline 6.0. This explain why this tests fail on FreeBSD when using readline 5.2. We skip now the history size if readline does not support it. See https://cnswww.cns.cwru.edu/php/chet/readline/CHANGES for details.
-rw-r--r--Lib/test/test_readline.py7
1 files changed, 7 insertions, 0 deletions
diff --git a/Lib/test/test_readline.py b/Lib/test/test_readline.py
index 5c37286..b4c25de 100644
--- a/Lib/test/test_readline.py
+++ b/Lib/test/test_readline.py
@@ -226,6 +226,13 @@ print("history", ascii(readline.get_history_item(1)))
self.assertIn(b"result " + expected + b"\r\n", output)
self.assertIn(b"history " + expected + b"\r\n", output)
+ # We have 2 reasons to skip this test:
+ # - readline: history size was added in 6.0
+ # See https://cnswww.cns.cwru.edu/php/chet/readline/CHANGES
+ # - editline: history size is broken on OS X 10.11.6.
+ # Newer versions were not tested yet.
+ @unittest.skipIf(readline._READLINE_VERSION < 0x600,
+ "this readline version does not support history-size")
@unittest.skipIf(is_editline,
"editline history size configuration is broken")
def test_history_size(self):