X-Git-Url: https://git.madduck.net/etc/vim.git/blobdiff_plain/4b8f631148d5ed7830cc34a7aa91ef71ea253f84..a3f273839d1b45fe73b3bc48e1d7a8c6d1422187:/test/run-tests.sh?ds=inline diff --git a/test/run-tests.sh b/test/run-tests.sh index c8c6213..ba00fc0 100755 --- a/test/run-tests.sh +++ b/test/run-tests.sh @@ -1,3 +1,16 @@ #!/usr/bin/env bash -cd "$( dirname "${BASH_SOURCE[0]}" )" && vim -Nu vimrc -c 'Vader! *' > /dev/null +# Exit on error. +set -e + +cd "$( dirname "${BASH_SOURCE[0]}" )" + +for dep in ../build/tabular ../build/vim-toml ../build/vader.vim; do + if [[ ! -d $dep ]]; then + echo "Missing dependency: $dep" + echo "You may just want to use 'make test'." + exit 1 + fi +done + +vim -Nu vimrc -c 'Vader! *' > /dev/null