diff options
author | Bram Moolenaar <Bram@vim.org> | 2017-01-13 22:30:08 +0100 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2017-01-13 22:30:08 +0100 |
commit | 9b73c4a215cb5f0f7df1e7f0663aea2bce1914ab (patch) | |
tree | be3b7d6654d9734e148279088ec719e95e5d66d5 | |
parent | e13b9afe1283f5ae43232b5992372a0eb570666c (diff) | |
download | vim-git-9b73c4a215cb5f0f7df1e7f0663aea2bce1914ab.tar.gz |
patch 8.0.0178: command count test fails on MS-Windowsv8.0.0178
Problem: test_command_count may fail when a previous test interferes, seen
on MS-Windows.
Solution: Run it separately.
-rw-r--r-- | src/testdir/Make_all.mak | 1 | ||||
-rw-r--r-- | src/testdir/test_alot.vim | 1 | ||||
-rw-r--r-- | src/version.c | 2 |
3 files changed, 3 insertions, 1 deletions
diff --git a/src/testdir/Make_all.mak b/src/testdir/Make_all.mak index 63a1b051f..956d321ea 100644 --- a/src/testdir/Make_all.mak +++ b/src/testdir/Make_all.mak @@ -144,6 +144,7 @@ NEW_TESTS = test_arglist.res \ test_channel.res \ test_charsearch.res \ test_cmdline.res \ + test_command_count.res \ test_crypt.res \ test_cscope.res \ test_diffmode.res \ diff --git a/src/testdir/test_alot.vim b/src/testdir/test_alot.vim index d29bc3a58..9a7c35dcd 100644 --- a/src/testdir/test_alot.vim +++ b/src/testdir/test_alot.vim @@ -3,7 +3,6 @@ source test_assign.vim source test_autocmd.vim -source test_command_count.vim source test_cursor_func.vim source test_delete.vim source test_execute_func.vim diff --git a/src/version.c b/src/version.c index a0887dd6f..1b64d5870 100644 --- a/src/version.c +++ b/src/version.c @@ -765,6 +765,8 @@ static char *(features[]) = static int included_patches[] = { /* Add new patch number below this line */ /**/ + 178, +/**/ 177, /**/ 176, |