diff options
author | Bram Moolenaar <Bram@vim.org> | 2019-07-29 21:03:45 +0200 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2019-07-29 21:03:45 +0200 |
commit | 3c610c96389bbb5f0fc83f0a515fc8f1b7f515e4 (patch) | |
tree | 58de7e26719120b67ad23a0c33c2eb00f5edaa19 | |
parent | 13d5c3f6162694a7e925e66fc4eea35436643384 (diff) | |
download | vim-git-3c610c96389bbb5f0fc83f0a515fc8f1b7f515e4.tar.gz |
patch 8.1.1774: test is silently skippedv8.1.1774
Problem: Test is silently skipped.
Solution: Throw "Skipped".
-rw-r--r-- | src/testdir/test_ins_complete.vim | 2 | ||||
-rw-r--r-- | src/version.c | 2 |
2 files changed, 3 insertions, 1 deletions
diff --git a/src/testdir/test_ins_complete.vim b/src/testdir/test_ins_complete.vim index 29f4050f9..fedb38acb 100644 --- a/src/testdir/test_ins_complete.vim +++ b/src/testdir/test_ins_complete.vim @@ -335,7 +335,7 @@ endfunc " Test for insert path completion with completeslash option func Test_ins_completeslash() if !has('win32') - return + throw 'Skipped: only works on MS-Windows' endif call mkdir('Xdir') diff --git a/src/version.c b/src/version.c index 4463c383f..8a3923ee2 100644 --- a/src/version.c +++ b/src/version.c @@ -778,6 +778,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ /**/ + 1774, +/**/ 1773, /**/ 1772, |