aboutsummaryrefslogtreecommitdiff
path: root/test/unit/os/shell_spec.lua
diff options
context:
space:
mode:
authorScott Prager <splinterofchaos@gmail.com>2015-05-02 10:30:30 -0400
committerScott Prager <splinterofchaos@gmail.com>2015-05-02 10:30:30 -0400
commit1c2c90ab0720784473805d20c359499a2d3d2ccf (patch)
tree8c4e587c91bbf91748c7ace6338aa3f609eaec0f /test/unit/os/shell_spec.lua
parent205466830207a920c62146b7b689fac2e395431a (diff)
parent1eb33969220b267cf45adb286f0b7b6d14805eff (diff)
downloadrneovim-1c2c90ab0720784473805d20c359499a2d3d2ccf.tar.gz
rneovim-1c2c90ab0720784473805d20c359499a2d3d2ccf.tar.bz2
rneovim-1c2c90ab0720784473805d20c359499a2d3d2ccf.zip
Merge pull request #2424 from splinterofchaos/term-no-sh
use an argument vector for termopen() / unify jobstart, termopen, and system
Diffstat (limited to 'test/unit/os/shell_spec.lua')
-rw-r--r--test/unit/os/shell_spec.lua4
1 files changed, 3 insertions, 1 deletions
diff --git a/test/unit/os/shell_spec.lua b/test/unit/os/shell_spec.lua
index 03aafe7e3c..91d807da0b 100644
--- a/test/unit/os/shell_spec.lua
+++ b/test/unit/os/shell_spec.lua
@@ -40,7 +40,9 @@ describe('shell functions', function()
local output = ffi.new('char *[1]')
local nread = ffi.new('size_t[1]')
- local status = shell.os_system(to_cstr(cmd), input_or, input_len, output, nread)
+ local argv = ffi.cast('char**',
+ shell.shell_build_argv(to_cstr(cmd), nil))
+ local status = shell.os_system(argv, input_or, input_len, output, nread)
return status, intern(output[0], nread[0])
end