aboutsummaryrefslogtreecommitdiff
path: root/test/functional/eval/executable_spec.lua
diff options
context:
space:
mode:
authorJustin M. Keyes <justinkz@gmail.com>2017-02-03 14:42:47 +0100
committerJustin M. Keyes <justinkz@gmail.com>2017-02-04 11:07:49 +0100
commitcd5b1315757ed3c66aa63c6df69582503c5b81dd (patch)
treefc0ce297eef31d712c929103266014dd9a28f83e /test/functional/eval/executable_spec.lua
parent978c95e5c484e0b6acf17cd6379a81b83721a5b1 (diff)
downloadrneovim-cd5b1315757ed3c66aa63c6df69582503c5b81dd.tar.gz
rneovim-cd5b1315757ed3c66aa63c6df69582503c5b81dd.tar.bz2
rneovim-cd5b1315757ed3c66aa63c6df69582503c5b81dd.zip
vim-patch:8.0.0280
patch 8.0.0280: problem setting multi-byte environment var on MS-Windows Problem: On MS-Windows setting an environment variable with multi-byte strings does not work well. Solution: Use wputenv when possible. (Taro Muraoka, Ken Takata) 7c23d1d9d9cc
Diffstat (limited to 'test/functional/eval/executable_spec.lua')
-rw-r--r--test/functional/eval/executable_spec.lua1
1 files changed, 1 insertions, 0 deletions
diff --git a/test/functional/eval/executable_spec.lua b/test/functional/eval/executable_spec.lua
index bcf5eba4eb..13b9261d82 100644
--- a/test/functional/eval/executable_spec.lua
+++ b/test/functional/eval/executable_spec.lua
@@ -27,6 +27,7 @@ describe('executable()', function()
clear({env={PATH=[[C:\Windows\system32;C:\Windows]]}})
print(helpers.eval('$PATH'))
print('XXXXXXXXXXXXXXXXXXXXXXXXX')
+ print(helpers.eval("echo glob(fnamemodify(exepath(v:progpath), ':h').'/*')"))
eq('arg1=lemon;arg2=sky;arg3=tree;',
call('system', sibling_exe..' lemon sky tree'))
end