summaryrefslogtreecommitdiff
path: root/run-tests
diff options
context:
space:
mode:
authorHoracio Sanson <hsanson@gmail.com>2022-06-29 13:17:00 +0900
committerGitHub <noreply@github.com>2022-06-29 13:17:00 +0900
commit16cca1413f6492a2bec1c036f1a0aa66c8219b34 (patch)
tree8f8eac91d8689fda2ada46f4633c6fe0caec1887 /run-tests
parent39d1a1058908396be61579a13e75a272cc527c57 (diff)
downloadale-16cca1413f6492a2bec1c036f1a0aa66c8219b34.zip
Update tests to use latest neovim 0.7 (#4180)
* Update tests to use latest neovim 0.7 * Update CI to use neovim 0.7 * Fix conflict
Diffstat (limited to 'run-tests')
-rwxr-xr-xrun-tests22
1 files changed, 11 insertions, 11 deletions
diff --git a/run-tests b/run-tests
index 93e94dec..2439b623 100755
--- a/run-tests
+++ b/run-tests
@@ -25,7 +25,7 @@ tests='test/*.vader test/*/*.vader test/*/*/*.vader test/*/*/*.vader'
verbose_flag=''
quiet_flag=''
run_neovim_02_tests=1
-run_neovim_06_tests=1
+run_neovim_07_tests=1
run_vim_80_tests=1
run_vim_82_tests=1
run_linters=1
@@ -44,7 +44,7 @@ while [ $# -ne 0 ]; do
run_vim_80_tests=0
run_vim_82_tests=0
run_neovim_02_tests=0
- run_neovim_06_tests=0
+ run_neovim_07_tests=0
run_linters=0
shift
;;
@@ -55,13 +55,13 @@ while [ $# -ne 0 ]; do
shift
;;
--neovim-02-only)
- run_neovim_06_tests=0
+ run_neovim_07_tests=0
run_vim_80_tests=0
run_vim_82_tests=0
run_linters=0
shift
;;
- --neovim-06-only)
+ --neovim-07-only)
run_neovim_02_tests=0
run_vim_80_tests=0
run_vim_82_tests=0
@@ -70,20 +70,20 @@ while [ $# -ne 0 ]; do
;;
--vim-only)
run_neovim_02_tests=0
- run_neovim_06_tests=0
+ run_neovim_07_tests=0
run_linters=0
shift
;;
--vim-80-only)
run_neovim_02_tests=0
- run_neovim_06_tests=0
+ run_neovim_07_tests=0
run_vim_82_tests=0
run_linters=0
shift
;;
--vim-82-only)
run_neovim_02_tests=0
- run_neovim_06_tests=0
+ run_neovim_07_tests=0
run_vim_80_tests=0
run_linters=0
shift
@@ -92,14 +92,14 @@ while [ $# -ne 0 ]; do
run_vim_80_tests=0
run_vim_82_tests=0
run_neovim_02_tests=0
- run_neovim_06_tests=0
+ run_neovim_07_tests=0
shift
;;
--fast)
run_vim_80_tests=0
run_vim_82_tests=0
run_neovim_02_tests=0
- run_neovim_06_tests=1
+ run_neovim_07_tests=1
shift
;;
--help)
@@ -114,7 +114,7 @@ while [ $# -ne 0 ]; do
echo ' --build-image Run docker image build only.'
echo ' --neovim-only Run tests only for NeoVim'
echo ' --neovim-02-only Run tests only for NeoVim 0.2'
- echo ' --neovim-06-only Run tests only for NeoVim 0.6'
+ echo ' --neovim-07-only Run tests only for NeoVim 0.7'
echo ' --vim-only Run tests only for Vim'
echo ' --vim-80-only Run tests only for Vim 8.0'
echo ' --vim-82-only Run tests only for Vim 8.2'
@@ -220,7 +220,7 @@ for vim in $(docker run --rm "$DOCKER_RUN_IMAGE" ls /vim-build/bin | grep '^neov
if ( [[ $vim =~ ^vim-v8.0 ]] && ((run_vim_80_tests)) ) \
|| ( [[ $vim =~ ^vim-v8.2 ]] && ((run_vim_82_tests)) ) \
|| ( [[ $vim =~ ^neovim-v0.2 ]] && ((run_neovim_02_tests)) ) \
- || ( [[ $vim =~ ^neovim-v0.6 ]] && ((run_neovim_06_tests)) ); then
+ || ( [[ $vim =~ ^neovim-v0.7 ]] && ((run_neovim_07_tests)) ); then
echo "Starting Vim: $vim..."
file_number=$((file_number+1))
test/script/run-vader-tests $quiet_flag $verbose_flag "$vim" "$tests" \