summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2018-10-07 18:43:05 +0200
committerBram Moolenaar <Bram@vim.org>2018-10-07 18:43:05 +0200
commita05a0d325c7615439f4a42f00682b2ebad43c8d9 (patch)
treecab4d566ee55b8cde66a182aa675bf29e99cd11e
parentdf77cef92ec034796723ffa3adb12e8b46daa98e (diff)
downloadvim-git-a05a0d325c7615439f4a42f00682b2ebad43c8d9.tar.gz
patch 8.1.0459: Test_executable fails when there is a dog in the systemv8.1.0459
Problem: Test_executable fails when there is a dog in the system. Solution: Rename the dog. (Hirohito Higashi)
-rw-r--r--src/testdir/test_functions.vim2
-rw-r--r--src/version.c2
2 files changed, 3 insertions, 1 deletions
diff --git a/src/testdir/test_functions.vim b/src/testdir/test_functions.vim
index d601c278c..e59cdf82a 100644
--- a/src/testdir/test_functions.vim
+++ b/src/testdir/test_functions.vim
@@ -855,7 +855,7 @@ func Test_Executable()
call assert_equal(0, executable('win.ini'))
elseif has('unix')
call assert_equal(1, executable('cat'))
- call assert_equal(0, executable('dog'))
+ call assert_equal(0, executable('nodogshere'))
endif
endfunc
diff --git a/src/version.c b/src/version.c
index b25f13245..c86849670 100644
--- a/src/version.c
+++ b/src/version.c
@@ -793,6 +793,8 @@ static char *(features[]) =
static int included_patches[] =
{ /* Add new patch number below this line */
/**/
+ 459,
+/**/
458,
/**/
457,