Mercurial > vim
changeset 34322:840146fba64b v9.1.0095
patch 9.1.0095: tests: test_restricted() fails
Commit: https://github.com/vim/vim/commit/52eb0b867704e43049cb396e64cadb5bd9a3ad0b
Author: Christian Brabandt <cb@256bit.org>
Date: Sat Feb 10 13:50:54 2024 +0100
patch 9.1.0095: tests: test_restricted() fails
Problem: tests: test_restricted() fails
(after: v9.1.0091)
Solution: Add a space before the pipecmd and the actual Vim command to
run
Signed-off-by: Christian Brabandt <cb@256bit.org>
author | Christian Brabandt <cb@256bit.org> |
---|---|
date | Sat, 10 Feb 2024 14:00:02 +0100 |
parents | 819b3c755af8 |
children | 857f6a19ca6a |
files | src/testdir/shared.vim src/version.c |
diffstat | 2 files changed, 3 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- a/src/testdir/shared.vim +++ b/src/testdir/shared.vim @@ -364,7 +364,7 @@ func RunVimPiped(before, after, argument " Optionally run Vim under valgrind " let cmd = 'valgrind --tool=memcheck --leak-check=yes --num-callers=25 --log-file=valgrind ' . cmd - exe "silent !" . a:pipecmd . cmd . args . ' ' . a:arguments + exe "silent !" .. a:pipecmd .. ' ' .. cmd .. args .. ' ' .. a:arguments if len(a:before) > 0 call delete('Xbefore.vim')