# HG changeset patch # User Bram Moolenaar # Date 1538930705 -7200 # Node ID bde025b0d7ded87d48f91f8b4b85142e80a0ad38 # Parent 6e8a71f2b3b7e5fc1f28e2d2b63f4484b0e43ec5 patch 8.1.0459: Test_executable fails when there is a dog in the system commit https://github.com/vim/vim/commit/a05a0d325c7615439f4a42f00682b2ebad43c8d9 Author: Bram Moolenaar Date: Sun Oct 7 18:43:05 2018 +0200 patch 8.1.0459: Test_executable fails when there is a dog in the system Problem: Test_executable fails when there is a dog in the system. Solution: Rename the dog. (Hirohito Higashi) diff --git a/src/testdir/test_functions.vim b/src/testdir/test_functions.vim --- 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 --- 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,