From 9a1234e57f404638f0e040323b0097a6dc38e17f Mon Sep 17 00:00:00 2001 From: ckelsel Date: Sat, 16 Jun 2018 19:40:29 +0800 Subject: vim-patch:8.0.0531: test with long directory name fails on non-unix systems Problem: Test with long directory name fails on non-unix systems. Solution: Skip the test on non-unix systems. https://github.com/vim/vim/commit/9b81079ddd839a666682f6bdbc24890bf4d1a42c --- src/nvim/testdir/test_edit.vim | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/nvim/testdir/test_edit.vim b/src/nvim/testdir/test_edit.vim index ae0404ea6c..daa86a2f80 100644 --- a/src/nvim/testdir/test_edit.vim +++ b/src/nvim/testdir/test_edit.vim @@ -1324,6 +1324,10 @@ func Test_edit_quit() endfunc func Test_edit_complete_very_long_name() + if !has('unix') + " Long directory names only work on Unix. + return + endif let save_columns = &columns set columns=5000 call assert_equal(5000, &columns) -- cgit