changeset 24057:eeb5518a37aa v8.2.2570

patch 8.2.2570: tests fail when run as root Commit: https://github.com/vim/vim/commit/f9a65505d1d93f3e67e5b8646bde3bbc44c70f7d Author: Bram Moolenaar <Bram@vim.org> Date: Fri Mar 5 20:47:44 2021 +0100 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 https://github.com/vim/vim/issues/7919)
author Bram Moolenaar <Bram@vim.org>
date Fri, 05 Mar 2021 21:00:03 +0100
parents 9f9f3747e096
children 23565e0a7bfd
files src/testdir/test_edit.vim src/testdir/test_excmd.vim src/testdir/test_help.vim src/testdir/test_writefile.vim src/version.c
diffstat 5 files changed, 6 insertions(+), 0 deletions(-) [+]
line wrap: on
line diff
--- a/src/testdir/test_edit.vim
+++ b/src/testdir/test_edit.vim
@@ -1704,6 +1704,7 @@ func Test_edit_charconvert()
 endfunc
 
 " 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()
   CheckUnix
   call writefile(['one', 'two'], 'Xfile')
--- a/src/testdir/test_excmd.vim
+++ b/src/testdir/test_excmd.vim
@@ -333,6 +333,7 @@ func Test_winsize_cmd()
 endfunc
 
 " 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()
   call assert_fails('redir @@', 'E475:')
   call assert_fails('redir abc', 'E475:')
--- a/src/testdir/test_help.vim
+++ b/src/testdir/test_help.vim
@@ -74,6 +74,7 @@ func Test_help_completion()
 endfunc
 
 " 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()
   call mkdir('Xdir/a/doc', 'p')
 
--- a/src/testdir/test_writefile.vim
+++ b/src/testdir/test_writefile.vim
@@ -406,6 +406,7 @@ func Test_patchmode()
 endfunc
 
 " 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()
   " On MS-Windows, modifying files in a read-only directory is allowed.
   CheckUnix
--- a/src/version.c
+++ b/src/version.c
@@ -751,6 +751,8 @@ static char *(features[]) =
 static int included_patches[] =
 {   /* Add new patch number below this line */
 /**/
+    2570,
+/**/
     2569,
 /**/
     2568,