comparison 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
comparison
equal deleted inserted replaced
22982:65d565bd70da 22983:1e1422df34e3
41 bw! 41 bw!
42 endfunc 42 endfunc
43 43
44 func GetCompilerNames() 44 func GetCompilerNames()
45 return glob('$VIMRUNTIME/compiler/*.vim', 0, 1) 45 return glob('$VIMRUNTIME/compiler/*.vim', 0, 1)
46 \ ->map({k, v -> substitute(v, '.*[\\/]\([a-zA-Z0-9_\-]*\).vim', '\1', '')}) 46 \ ->map({i, v -> substitute(v, '.*[\\/]\([a-zA-Z0-9_\-]*\).vim', '\1', '')})
47 \ ->sort()
47 endfunc 48 endfunc
48 49
49 func Test_compiler_without_arg() 50 func Test_compiler_without_arg()
50 let runtime = substitute($VIMRUNTIME, '\\', '/', 'g') 51 let runtime = substitute($VIMRUNTIME, '\\', '/', 'g')
51 let a = split(execute('compiler')) 52 let a = split(execute('compiler'))