diff options
author | Bram Moolenaar <Bram@vim.org> | 2021-10-05 01:19:53 +0100 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2021-10-05 01:19:53 +0100 |
commit | 6d197987745427801a2195836ef89e48537afbeb (patch) | |
tree | 529d4acb287be0860342cd6bb84c7e8e37bd6d02 /src | |
parent | d3710cf01ef6ab1b2f233866ff01dab76686f642 (diff) | |
download | vim-git-6d197987745427801a2195836ef89e48537afbeb.tar.gz |
patch 8.2.3477: startup test fails on MS-Windowsv8.2.3477
Problem: Startup test fails on MS-Windows.
Solution: Skip the test if not on Unix.
Diffstat (limited to 'src')
-rw-r--r-- | src/testdir/test_startup.vim | 2 | ||||
-rw-r--r-- | src/version.c | 2 |
2 files changed, 4 insertions, 0 deletions
diff --git a/src/testdir/test_startup.vim b/src/testdir/test_startup.vim index 897492deb..dc320825c 100644 --- a/src/testdir/test_startup.vim +++ b/src/testdir/test_startup.vim @@ -1297,6 +1297,8 @@ func Test_echo_true_in_cmd() endfunc func Test_rename_buffer_on_startup() + CheckUnix + let lines =<< trim END call writefile(['done'], 'Xresult') qa! diff --git a/src/version.c b/src/version.c index 95200c666..e65eb8c57 100644 --- a/src/version.c +++ b/src/version.c @@ -758,6 +758,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ /**/ + 3477, +/**/ 3476, /**/ 3475, |