c49ced880c
subrepo: subdir: "dotfiles/.vim/plugged/vim-gitgutter" merged: "f19b6203" upstream: origin: "https://github.com/airblade/vim-gitgutter.git" branch: "master" commit: "f19b6203" git-subrepo: version: "0.4.3" origin: "???" commit: "???"
21 lines
496 B
Bash
Executable file
21 lines
496 B
Bash
Executable file
#!/usr/bin/env bash
|
|
|
|
VIM="/Applications/MacVim.app/Contents/MacOS/Vim -v"
|
|
|
|
export VIM_GITGUTTER_TEST=1
|
|
|
|
$VIM -u NONE -U NONE -N \
|
|
--cmd 'set rtp+=../' \
|
|
--cmd 'let g:gitgutter_async=0' \
|
|
--cmd 'source ../plugin/gitgutter.vim' \
|
|
-S runner.vim \
|
|
test_*.vim \
|
|
"$@"
|
|
|
|
cat messages.log
|
|
|
|
grep -q "0 errors, 0 failures" messages.log
|
|
status=$?
|
|
rm messages.log
|
|
exit $status
|
|
|