]> git.ipfire.org Git - thirdparty/vim.git/commitdiff
patch 7.4.1352 v7.4.1352
authorBram Moolenaar <Bram@vim.org>
Thu, 18 Feb 2016 21:25:47 +0000 (22:25 +0100)
committerBram Moolenaar <Bram@vim.org>
Thu, 18 Feb 2016 21:25:47 +0000 (22:25 +0100)
Problem:    The test script lists all functions before executing them.
Solution:   Only list the function currently being executed.

src/testdir/runtest.vim
src/version.c

index da515f0ae75bbba3252b8ab8e0a460fb3be7aa06..2d5e21c9276360981f7ab17c3f7bfd0a883f5844 100644 (file)
@@ -90,12 +90,13 @@ endif
 " Locate Test_ functions and execute them.
 set nomore
 redir @q
-function /^Test_
+silent function /^Test_
 redir END
 let s:tests = split(substitute(@q, 'function \(\k*()\)', '\1', 'g'))
 
 " Execute the tests in alphabetical order.
- for s:test in sort(s:tests)
+for s:test in sort(s:tests)
+  echo 'Executing ' . s:test
   if exists("*SetUp")
     call SetUp()
   endif
index 71652281f4f5ad3155e788f322165927150485b0..c46e44757806d326535a8652dc32eee8eeb0ad28 100644 (file)
@@ -747,6 +747,8 @@ static char *(features[]) =
 
 static int included_patches[] =
 {   /* Add new patch number below this line */
+/**/
+    1352,
 /**/
     1351,
 /**/