diff options
author | ZyX <kp-pav@yandex.ru> | 2017-07-16 21:17:24 +0300 |
---|---|---|
committer | ZyX <kp-pav@yandex.ru> | 2017-07-16 21:17:24 +0300 |
commit | 3660535f0229afc4ce3391d94794253f685ec400 (patch) | |
tree | eb2a5514ab517a1dac945679676ef3a885f04de9 | |
parent | 69719e658c48bb5e95a7b57d5813ed4dc48e68e3 (diff) | |
download | rneovim-3660535f0229afc4ce3391d94794253f685ec400.tar.gz rneovim-3660535f0229afc4ce3391d94794253f685ec400.tar.bz2 rneovim-3660535f0229afc4ce3391d94794253f685ec400.zip |
oldtests: Use $(TOOL) in place of $(VALGRIND)
-rw-r--r-- | src/nvim/testdir/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/nvim/testdir/Makefile b/src/nvim/testdir/Makefile index 510e8820f4..9ba4e4b3c1 100644 --- a/src/nvim/testdir/Makefile +++ b/src/nvim/testdir/Makefile @@ -201,7 +201,7 @@ nolog: # New style of tests uses Vim script with assert calls. These are easier # to write and a lot easier to read and debug. # Limitation: Only works with the +eval feature. -RUN_VIMTEST = VIMRUNTIME=$(SCRIPTSOURCE); export VIMRUNTIME; $(VALGRIND) $(NVIM_PRG) -u unix.vim -U NONE --noplugin +RUN_VIMTEST = VIMRUNTIME=$(SCRIPTSOURCE); export VIMRUNTIME; $(TOOL) $(NVIM_PRG) -u unix.vim -U NONE --noplugin newtests: newtestssilent @/bin/sh -c "if test -f messages && grep -q 'FAILED' messages; then \ |