diff options
| author | zeertzjq <zeertzjq@outlook.com> | 2022-11-06 22:13:36 +0800 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2022-11-06 22:13:36 +0800 |
| commit | 728c69bc8d52a3f2281a76e4142b2d766dc45da0 (patch) | |
| tree | c52e1a90dcaee1bb55e2326581987d68fc8fe07d /src/nvim/testdir/test_edit.vim | |
| parent | da0fb438496a7d721830bea51f0eb38d8c995883 (diff) | |
| download | rneovim-728c69bc8d52a3f2281a76e4142b2d766dc45da0.tar.gz rneovim-728c69bc8d52a3f2281a76e4142b2d766dc45da0.tar.bz2 rneovim-728c69bc8d52a3f2281a76e4142b2d766dc45da0.zip | |
vim-patch:8.2.1340: some tests fail on Cirrus CI and/or with FreeBSD (#20967)
Problem: Some tests fail on Cirrus CI and/or with FreeBSD.
Solution: Make 'backupskip' empty. Do not run tests as root. Check for
directory when using viminfo. (Ozaki Kiichi, closes vim/vim#6596)
https://github.com/vim/vim/commit/b86abadf87bd0f85f800077171ec4b98aefff776
Diffstat (limited to 'src/nvim/testdir/test_edit.vim')
| -rw-r--r-- | src/nvim/testdir/test_edit.vim | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/src/nvim/testdir/test_edit.vim b/src/nvim/testdir/test_edit.vim index 89fd73351d..4994e7af8f 100644 --- a/src/nvim/testdir/test_edit.vim +++ b/src/nvim/testdir/test_edit.vim @@ -1836,7 +1836,6 @@ endfunc " Test for editing a file without read permission func Test_edit_file_no_read_perm() CheckUnix - CheckNotBSD call writefile(['one', 'two'], 'Xfile') call setfperm('Xfile', '-w-------') new |