diff options
author | Bram Moolenaar <Bram@vim.org> | 2021-03-05 20:47:44 +0100 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2021-03-05 20:47:44 +0100 |
commit | f9a65505d1d93f3e67e5b8646bde3bbc44c70f7d (patch) | |
tree | bb1709bc740142a0883ab4c738d3ff2ed5df32c0 /src | |
parent | 008bff967f7fcaa6af066f71d65bfbba5ef5c7d3 (diff) | |
download | vim-git-f9a65505d1d93f3e67e5b8646bde3bbc44c70f7d.tar.gz |
patch 8.2.2570: tests fail when run as rootv8.2.2570
Problem: Tests fail when run as root.
Solution: Add a comment mentioning the expected failure. (issue #7919)
Diffstat (limited to 'src')
-rw-r--r-- | src/testdir/test_edit.vim | 1 | ||||
-rw-r--r-- | src/testdir/test_excmd.vim | 1 | ||||
-rw-r--r-- | src/testdir/test_help.vim | 1 | ||||
-rw-r--r-- | src/testdir/test_writefile.vim | 1 | ||||
-rw-r--r-- | src/version.c | 2 |
5 files changed, 6 insertions, 0 deletions
diff --git a/src/testdir/test_edit.vim b/src/testdir/test_edit.vim index 6f083d95b..0b44c7df3 100644 --- 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') diff --git a/src/testdir/test_excmd.vim b/src/testdir/test_excmd.vim index f27b38562..0170a9f3b 100644 --- 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:') diff --git a/src/testdir/test_help.vim b/src/testdir/test_help.vim index 219689bde..966616c97 100644 --- 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') diff --git a/src/testdir/test_writefile.vim b/src/testdir/test_writefile.vim index 07beb64e6..e7a309a08 100644 --- 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 diff --git a/src/version.c b/src/version.c index ffedb4fdf..add4c38da 100644 --- 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, |