Upstream commit fixing testcases for fish>=3.1, see https://github.com/kislyuk/argcomplete/commit/08bfc8a788e8081515d733e67be026d051c726f7 diff --git a/test/test.py b/test/test.py index e91352b..2c34806 100755 --- a/test/test.py +++ b/test/test.py @@ -28,6 +28,8 @@ BASH_VERSION = subprocess.check_output(['bash', '-c', 'echo $BASH_VERSION']).decode() BASH_MAJOR_VERSION = int(BASH_VERSION.split('.')[0]) +FISH_VERSION_STR = subprocess.check_output(['fish', '-c', 'echo -n $FISH_VERSION']).decode() +FISH_VERSION_TUPLE = tuple(int(x) for x in FISH_VERSION_STR.split('.')) class TempDir(object): @@ -1258,8 +1260,11 @@ class TestFish(_TestSh, unittest.TestCase): expected_failures = [ 'test_parse_special_characters', 'test_comp_point', - 'test_special_characters_double_quoted' ] + if FISH_VERSION_TUPLE < (3, 1): + expected_failures.extend([ + 'test_special_characters_double_quoted' + ]) skipped = [ 'test_single_quotes_in_single_quotes', t/'>aboutsummaryrefslogtreecommitdiff
path: root/gnu/packages/jemalloc.scm
AgeCommit message (Expand)Author
2017-03-01gnu: jemalloc: Update to 4.5.0....Marius Bakke
2017-02-19gnu: jemalloc: Update to 4.4.0....Marius Bakke
2016-05-19gnu: jemalloc: Update to 4.2.0....Jelle Licht
2016-05-13gnu: jemalloc: No longer build with gcc-4.8 on i686....Mark H Weaver
2016-05-04gnu: jemalloc: Update to 4.1.0....Jelle Licht
2015-06-21gnu: jemalloc: Build with gcc-4.8 on i686....Mark H Weaver
2015-04-18gnu: Add jemalloc....宋文武