diff src/testdir/test_compiler.vim @ 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 72e0ec552189
children f74978697fb6
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()