1
0
Fork 0
mirror of synced 2024-07-01 04:51:10 -04:00
ultimate-vim/.vim_runtime/sources_non_forked/vim-snipmate/t/tests.sh
2022-04-13 17:21:09 +08:00

21 lines
399 B
Bash

#!/bin/sh
tmp="$(mktemp || tmpfile)"
vim -Es $tmp <<- EOF
source ~/.vimrc
%delete _
call append(0, split(&rtp, ','))
delete _
wq
EOF
rtp="$(grep -iE 'vspec|snipmate|tlib|mw-utils' < $tmp | grep -v after)"
vspec="$(grep -iE 'vspec' < $tmp | grep -v after)"
test_files="${*:-parser jumping}"
for test in $test_files; do
$vspec/bin/vspec $rtp ${test%%.vim}.vim
done
rm $tmp