Some checks failed
Detach Plugins / check (FlyGrep.vim) (push) Has been cancelled
Detach Plugins / check (GitHub.vim) (push) Has been cancelled
Detach Plugins / check (JavaUnit.vim) (push) Has been cancelled
Detach Plugins / check (SourceCounter.vim) (push) Has been cancelled
Detach Plugins / check (cpicker.nvim) (push) Has been cancelled
Detach Plugins / check (dein-ui.vim) (push) Has been cancelled
Detach Plugins / check (git.vim) (push) Has been cancelled
Detach Plugins / check (iedit.vim) (push) Has been cancelled
Detach Plugins / check (scrollbar.vim) (push) Has been cancelled
Detach Plugins / check (vim-chat) (push) Has been cancelled
Detach Plugins / check (vim-cheat) (push) Has been cancelled
Detach Plugins / check (vim-todo) (push) Has been cancelled
Detach Plugins / check (xmake.vim) (push) Has been cancelled
test / Linux (nvim, nightly) (push) Has been cancelled
test / Linux (nvim, v0.3.8) (push) Has been cancelled
test / Linux (nvim, v0.4.0) (push) Has been cancelled
test / Linux (nvim, v0.4.2) (push) Has been cancelled
test / Linux (nvim, v0.4.3) (push) Has been cancelled
test / Linux (nvim, v0.4.4) (push) Has been cancelled
test / Linux (nvim, v0.5.0) (push) Has been cancelled
test / Linux (nvim, v0.5.1) (push) Has been cancelled
test / Linux (nvim, v0.6.0) (push) Has been cancelled
test / Linux (nvim, v0.6.1) (push) Has been cancelled
test / Linux (nvim, v0.7.0) (push) Has been cancelled
test / Linux (nvim, v0.7.2) (push) Has been cancelled
test / Linux (nvim, v0.8.0) (push) Has been cancelled
test / Linux (nvim, v0.8.1) (push) Has been cancelled
test / Linux (nvim, v0.8.2) (push) Has been cancelled
test / Linux (nvim, v0.8.3) (push) Has been cancelled
test / Linux (nvim, v0.9.0) (push) Has been cancelled
test / Linux (nvim, v0.9.1) (push) Has been cancelled
test / Linux (true, vim, v7.4.052) (push) Has been cancelled
test / Linux (true, vim, v7.4.1689) (push) Has been cancelled
test / Linux (true, vim, v7.4.629) (push) Has been cancelled
test / Linux (true, vim, v8.0.0027) (push) Has been cancelled
test / Linux (true, vim, v8.0.0183) (push) Has been cancelled
test / Linux (vim, nightly) (push) Has been cancelled
test / Linux (vim, v8.0.0184) (push) Has been cancelled
test / Linux (vim, v8.0.1453) (push) Has been cancelled
test / Linux (vim, v8.1.2269) (push) Has been cancelled
test / Linux (vim, v8.2.2434) (push) Has been cancelled
test / Linux (vim, v8.2.3995) (push) Has been cancelled
test / Windows (nvim, nightly) (push) Has been cancelled
test / Windows (nvim, v0.3.8) (push) Has been cancelled
test / Windows (nvim, v0.4.2) (push) Has been cancelled
test / Windows (nvim, v0.4.3) (push) Has been cancelled
test / Windows (nvim, v0.4.4) (push) Has been cancelled
test / Windows (nvim, v0.5.0) (push) Has been cancelled
test / Windows (nvim, v0.5.1) (push) Has been cancelled
test / Windows (nvim, v0.6.0) (push) Has been cancelled
test / Windows (nvim, v0.6.1) (push) Has been cancelled
test / Windows (nvim, v0.7.0) (push) Has been cancelled
test / Windows (nvim, v0.7.2) (push) Has been cancelled
test / Windows (nvim, v0.8.0) (push) Has been cancelled
test / Windows (nvim, v0.8.1) (push) Has been cancelled
test / Windows (nvim, v0.8.2) (push) Has been cancelled
test / Windows (nvim, v0.8.3) (push) Has been cancelled
test / Windows (nvim, v0.9.0) (push) Has been cancelled
test / Windows (nvim, v0.9.1) (push) Has been cancelled
test / Windows (vim, nightly) (push) Has been cancelled
test / Windows (vim, v7.4.1185) (push) Has been cancelled
test / Windows (vim, v7.4.1689) (push) Has been cancelled
test / Windows (vim, v8.0.0027) (push) Has been cancelled
test / Windows (vim, v8.0.1453) (push) Has been cancelled
test / Windows (vim, v8.1.2269) (push) Has been cancelled
test / Windows (vim, v8.2.2434) (push) Has been cancelled
test / Windows (vim, v8.2.3995) (push) Has been cancelled
docker / docker (push) Has been cancelled
mirror / check (coding) (push) Has been cancelled
mirror / check (gitee) (push) Has been cancelled
mirror / check (gitlab) (push) Has been cancelled
109 lines
2.7 KiB
Bash
109 lines
2.7 KiB
Bash
#!/bin/sh
|
|
#
|
|
# Run all tests.
|
|
#
|
|
|
|
set -euC
|
|
vimgodir=$(cd -P "$(dirname "$0")/.." > /dev/null && pwd)
|
|
cd "$vimgodir"
|
|
|
|
_usage() {
|
|
echo "Usage: ${0##*/} [-hvc] [-r file] vim_version"
|
|
echo
|
|
echo "Options:"
|
|
echo " -h Show this help"
|
|
echo " -v Enable verbose output"
|
|
echo " -r Run only the tests from this file"
|
|
echo " -c Generate code coverage reports"
|
|
echo " -u Submit code coverage reports"
|
|
echo
|
|
}
|
|
|
|
verbose=0
|
|
run=""
|
|
coverage=""
|
|
uploadcoverage=""
|
|
while getopts "hvcur:" option; do
|
|
case "$option" in
|
|
h) _usage; exit 0 ;;
|
|
v) verbose=1; ;;
|
|
r) run=$OPTARG ;;
|
|
c) coverage="-c" ;;
|
|
u) uploadcoverage=1 ;;
|
|
*)
|
|
echo "error: unknown option '$option'"
|
|
_usage
|
|
exit 1
|
|
;;
|
|
esac
|
|
done
|
|
shift $((OPTIND - 1))
|
|
|
|
### Setup Vim and other dependencies.
|
|
#####################################
|
|
if [ -z "${1:-}" ]; then
|
|
echo "unknown version: '${1:-}'"
|
|
echo "First argument must be 'vim-8.0' or 'nvim'."
|
|
exit 1
|
|
fi
|
|
|
|
vim=$1
|
|
vimdir="/tmp/vim-go-test/$vim-install"
|
|
export GOPATH=$vimdir
|
|
export PATH="${GOPATH}/bin:$PATH"
|
|
|
|
if [ ! -f "$vimdir/bin/vim" ]; then
|
|
echo "$vimdir/bin/vim doesn't exist; did you install it with the install-vim script?"
|
|
exit 1
|
|
fi
|
|
|
|
### Run tests.
|
|
##############
|
|
# Clean stale log file.
|
|
[ -f '/tmp/vim-go-test/test.log' ] && rm '/tmp/vim-go-test/test.log'
|
|
[ -f '/tmp/vim-go-test/FAILED' ] && rm '/tmp/vim-go-test/FAILED'
|
|
[ -f '/tmp/vim-go-test/cov-profile.txt' ] && rm '/tmp/vim-go-test/cov-profile.txt'
|
|
[ -f '/tmp/vim-go-test/cov-report.txt' ] && rm '/tmp/vim-go-test/cov-report.txt'
|
|
|
|
# Run the actual tests.
|
|
find "$vimgodir" -name '*_test.vim' | sort | while read test_file; do
|
|
[ -n "$run" -a "$(basename "$test_file")" != "$run" ] && continue
|
|
|
|
"$vimgodir/scripts/run-vim" $coverage $vim -e \
|
|
+"silent e $test_file" \
|
|
+"let g:test_verbose=$verbose" \
|
|
+"let g:go_echo_command_info=0" \
|
|
-S ./scripts/runtest.vim < /dev/null || (
|
|
# If Vim exits with non-0 it's almost certainly a bug in the test runner;
|
|
# should very rarely happen in normal usage.
|
|
echo 'test runner failure'
|
|
cat '/tmp/vim-go-test/test.tmp'
|
|
rm '/tmp/vim-go-test/test.tmp'
|
|
exit 5
|
|
)
|
|
|
|
# Append logs
|
|
cat '/tmp/vim-go-test/test.tmp' | tee '/tmp/vim-go-test/test.log'
|
|
rm '/tmp/vim-go-test/test.tmp'
|
|
done
|
|
|
|
echo
|
|
if [ -f "/tmp/vim-go-test/FAILED" ]; then
|
|
echo 2>&1 "Some ($vim) tests FAILED"
|
|
exit 1
|
|
fi
|
|
echo 2>&1 "All ($vim) tests PASSED"
|
|
|
|
# Generate coverage reports
|
|
if [ -n "$coverage" ]; then
|
|
coverage xml --omit '*_test.vim'
|
|
|
|
if [ -n "$uploadcoverage" ]; then
|
|
codecov -X search gcov pycov -f coverage.xml --required \
|
|
--flags "$(echo "$vim" | sed -s 's/[-.]//g')"
|
|
rm coverage.xml
|
|
fi
|
|
fi
|
|
|
|
# vim:ts=2:sts=2:sw=2:et
|