changeset 22983:1e1422df34e3 v8.2.2038

patch 8.2.2038: compiler test fails on MS-Windows Commit: https://github.com/vim/vim/commit/142f23544c7045b22e56fa6ee35808aceb6342f2 Author: Bram Moolenaar <Bram@vim.org> Date: Mon Nov 23 21:39:14 2020 +0100 patch 8.2.2038: compiler test fails on MS-Windows Problem: Compiler test fails on MS-Windows. Solution: Sort the found compiler plugin names.
author Bram Moolenaar <Bram@vim.org>
date Mon, 23 Nov 2020 21:45:03 +0100
parents 65d565bd70da
children 79eac5f2dad6
files src/testdir/test_compiler.vim src/version.c
diffstat 2 files changed, 4 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/src/testdir/test_compiler.vim
+++ b/src/testdir/test_compiler.vim
@@ -43,7 +43,8 @@ endfunc
 
 func GetCompilerNames()
   return glob('$VIMRUNTIME/compiler/*.vim', 0, 1)
-        \ ->map({k, v -> substitute(v, '.*[\\/]\([a-zA-Z0-9_\-]*\).vim', '\1', '')})
+        \ ->map({i, v -> substitute(v, '.*[\\/]\([a-zA-Z0-9_\-]*\).vim', '\1', '')})
+        \ ->sort()
 endfunc
 
 func Test_compiler_without_arg()
--- a/src/version.c
+++ b/src/version.c
@@ -751,6 +751,8 @@ static char *(features[]) =
 static int included_patches[] =
 {   /* Add new patch number below this line */
 /**/
+    2038,
+/**/
     2037,
 /**/
     2036,