From: Bram Moolenaar Date: Wed, 18 Sep 2019 19:42:38 +0000 (+0200) Subject: patch 8.1.2054: compiler test for Perl may fail X-Git-Tag: v8.1.2054 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=cebfcffa40c058119bc2f92f0db02dffd3f6affe;p=vim patch 8.1.2054: compiler test for Perl may fail Problem: Compiler test for Perl may fail. Solution: Accept any error line number. (James McCoy, closes #4944) --- diff --git a/src/testdir/test_compiler.vim b/src/testdir/test_compiler.vim index f561e84a3..40d3cdbda 100644 --- a/src/testdir/test_compiler.vim +++ b/src/testdir/test_compiler.vim @@ -28,8 +28,9 @@ func Test_compiler() w! call feedkeys(":make\\", 'tx') let a=execute('clist') - call assert_match("\n 1 Xfoo.pl:3: Global symbol \"\$foo\" " - \ . "requires explicit package name", a) + call assert_match('\n \d\+ Xfoo.pl:3: Global symbol "$foo" ' + \ . 'requires explicit package name', a) + let &shellslash = save_shellslash call delete('Xfoo.pl') diff --git a/src/version.c b/src/version.c index debc3d7b1..872088689 100644 --- a/src/version.c +++ b/src/version.c @@ -757,6 +757,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ +/**/ + 2054, /**/ 2053, /**/