vim-patch:8.2.2570: tests fail when run as root

Problem:    Tests fail when run as root.
Solution:   Add a comment mentioning the expected failure. (issue vim/vim#7919)

f9a65505d1

Co-authored-by: Bram Moolenaar <Bram@vim.org>
This commit is contained in:
zeertzjq
2022-11-06 22:15:33 +08:00
parent de500095b1
commit df71537a12
4 changed files with 4 additions and 0 deletions

View File

@@ -1834,6 +1834,7 @@ func Test_edit_charconvert()
endfunc endfunc
" Test for editing a file without read permission " Test for editing a file without read permission
" NOTE: if you run tests as root this will fail. Don't run tests as root!
func Test_edit_file_no_read_perm() func Test_edit_file_no_read_perm()
CheckUnix CheckUnix
call writefile(['one', 'two'], 'Xfile') call writefile(['one', 'two'], 'Xfile')

View File

@@ -476,6 +476,7 @@ func Test_winsize_cmd()
endfunc endfunc
" Test for the :redir command " Test for the :redir command
" NOTE: if you run tests as root this will fail. Don't run tests as root!
func Test_redir_cmd() func Test_redir_cmd()
call assert_fails('redir @@', 'E475:') call assert_fails('redir @@', 'E475:')
call assert_fails('redir abc', 'E475:') call assert_fails('redir abc', 'E475:')

View File

@@ -98,6 +98,7 @@ func Test_help_completion()
endfunc endfunc
" Test for the :helptags command " Test for the :helptags command
" NOTE: if you run tests as root this will fail. Don't run tests as root!
func Test_helptag_cmd() func Test_helptag_cmd()
call mkdir('Xdir/a/doc', 'p') call mkdir('Xdir/a/doc', 'p')

View File

@@ -419,6 +419,7 @@ func Test_patchmode()
endfunc endfunc
" Test for writing to a file in a readonly directory " Test for writing to a file in a readonly directory
" NOTE: if you run tests as root this will fail. Don't run tests as root!
func Test_write_readonly_dir() func Test_write_readonly_dir()
" On MS-Windows, modifying files in a read-only directory is allowed. " On MS-Windows, modifying files in a read-only directory is allowed.
CheckUnix CheckUnix