summaryrefslogtreecommitdiff
path: root/run-tests
diff options
context:
space:
mode:
authorw0rp <devw0rp@gmail.com>2017-07-09 14:58:17 +0100
committerw0rp <devw0rp@gmail.com>2017-07-09 14:58:21 +0100
commit836a2cfe3b5ba2761291564cbf412ca79f9a52a9 (patch)
tree59eb08c4de6b7a823971b94817803a8598ea61fd /run-tests
parentc67d3b7e60b03ad52fe232b93b8867395dd8caa5 (diff)
downloadale-836a2cfe3b5ba2761291564cbf412ca79f9a52a9.zip
Fix issues with running individual tests, and get the Vim tests to run on certain machines again
Diffstat (limited to 'run-tests')
-rwxr-xr-xrun-tests11
1 files changed, 10 insertions, 1 deletions
diff --git a/run-tests b/run-tests
index 92dca319..b32ac703 100755
--- a/run-tests
+++ b/run-tests
@@ -45,6 +45,15 @@ while [ $# -ne 0 ]; do
run_neovim_tests=0
run_vint=0
run_custom_checks=0
+ shift
+ ;;
+ --no-vint)
+ run_vint=0
+ shift
+ ;;
+ --no-custom-checks)
+ run_custom_checks=0
+ shift
;;
--)
shift
@@ -161,7 +170,7 @@ if ((run_vim_tests)); then
echo
set -o pipefail
- docker run -a stderr "${DOCKER_FLAGS[@]}" \
+ docker run -a stderr -e VADER_OUTPUT_FILE=/dev/stderr "${DOCKER_FLAGS[@]}" \
"/vim-build/bin/$vim" -u test/vimrc \
"+Vader! $tests" 2>&1 | filter-vader-output | color-vader-output || EXIT=$?
set +o pipefail