diff options
author | Bram Moolenaar <Bram@vim.org> | 2017-11-21 11:43:08 +0100 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2017-11-21 11:43:08 +0100 |
commit | 6e77df2d8555ade4470e566011603ae40f1f0f3a (patch) | |
tree | 48222e9abb40ef81ad8a5e8732d022dfdd850c8d /src/testdir/test_plus_arg_edit.vim | |
parent | 5df95ea9ef34b5a898141ddc7134e4a7de713ba5 (diff) | |
download | vim-git-6e77df2d8555ade4470e566011603ae40f1f0f3a.tar.gz |
patch 8.0.1326: largefile test fails on CI, glob test on MS-Windowsv8.0.1326
Problem: Largefile test fails on CI, glob test on MS-Windows.
Solution: Remove largefile test from list of all tests. Don't run
Test_glob() on non-unix systems. More cleanup. (Yegappan
Lakshmanan, closes #2354)
Diffstat (limited to 'src/testdir/test_plus_arg_edit.vim')
-rw-r--r-- | src/testdir/test_plus_arg_edit.vim | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/testdir/test_plus_arg_edit.vim b/src/testdir/test_plus_arg_edit.vim index 0907550bf..71dbea199 100644 --- a/src/testdir/test_plus_arg_edit.vim +++ b/src/testdir/test_plus_arg_edit.vim @@ -5,4 +5,6 @@ function Test_edit() edit +1|s/|/PIPE/|w Xfile1| e Xfile2|1 | s/\//SLASH/|w call assert_equal(["fooPIPEbar"], readfile("Xfile1")) call assert_equal(["fooSLASHbar"], readfile("Xfile2")) + call delete('Xfile1') + call delete('Xfile2') endfunction |