diff options
author | Justin M. Keyes <justinkz@gmail.com> | 2018-03-18 17:15:06 +0100 |
---|---|---|
committer | Justin M. Keyes <justinkz@gmail.com> | 2018-03-18 17:15:06 +0100 |
commit | ae409b5042abdbec67305a063cf921ddffcce0c8 (patch) | |
tree | 6f47fcba9d69e7dc854be5047e03c8342f0b44ca | |
parent | 167898a5177de6d2fa6ae553fc3305d399b453d3 (diff) | |
download | rneovim-ae409b5042abdbec67305a063cf921ddffcce0c8.tar.gz rneovim-ae409b5042abdbec67305a063cf921ddffcce0c8.tar.bz2 rneovim-ae409b5042abdbec67305a063cf921ddffcce0c8.zip |
test/win: use cmd.exe for test
Can revert this after #8120.
-rw-r--r-- | test/functional/core/job_spec.lua | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/test/functional/core/job_spec.lua b/test/functional/core/job_spec.lua index aaa35f6c62..6d4cadbdc8 100644 --- a/test/functional/core/job_spec.lua +++ b/test/functional/core/job_spec.lua @@ -641,6 +641,8 @@ describe('jobs', function() end) it('jobstop() kills entire process tree #6530', function() + command('set shell& shellcmdflag& shellquote& shellpipe& shellredir& shellxquote&') + -- XXX: Using `nvim` isn't a good test, it reaps its children on exit. -- local c = 'call jobstart([v:progpath, "-u", "NONE", "-i", "NONE", "--headless"])' -- local j = eval("jobstart([v:progpath, '-u', 'NONE', '-i', 'NONE', '--headless', '-c', '" |