diff options
author | Bram Moolenaar <Bram@vim.org> | 2017-01-08 14:14:43 +0100 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2017-01-08 14:14:43 +0100 |
commit | 31f19ce0a052f7c76d44a9a190e468c79cf5d56d (patch) | |
tree | 2893f4af9229e7010bbfd84796559500fd95bebf /src/testdir/test_system.vim | |
parent | 9d9c35651712b88c81f1ae11091de1fd0bbbd35c (diff) | |
download | vim-git-31f19ce0a052f7c76d44a9a190e468c79cf5d56d.tar.gz |
patch 8.0.0154: system() test fails on OS/Xv8.0.0154
Problem: system() test fails on OS/X.
Solution: Deal with leading spaces.
Diffstat (limited to 'src/testdir/test_system.vim')
-rw-r--r-- | src/testdir/test_system.vim | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/src/testdir/test_system.vim b/src/testdir/test_system.vim index be00d180c..0446bd910 100644 --- a/src/testdir/test_system.vim +++ b/src/testdir/test_system.vim @@ -19,13 +19,21 @@ function! Test_System() call assert_equal('123', system('cat', '123')) call assert_equal(['123'], systemlist('cat', '123')) call assert_equal(["as\<NL>df"], systemlist('cat', ["as\<NL>df"])) + new Xdummy call setline(1, ['asdf', "pw\<NL>er", 'xxxx']) - call assert_equal("3\n", system('wc -l', bufnr('%'))) + let out = system('wc -l', bufnr('%')) + " On OS/X we get leading spaces + let out = substitute(out, '^ *', '', '') + call assert_equal("3\n", out) let out = systemlist('wc -l', bufnr('%')) " On Windows we may get a trailing CR. if out != ["3\r"] + " On OS/X we get leading spaces + if type(out) == v:t_list + let out[0] = substitute(out[0], '^ *', '', '') + endif call assert_equal(['3'], out) endif |