ci: remove continue flag from exit_suite since it's always needed

This commit is contained in:
Dundar Göc 2022-02-07 13:55:32 +01:00
parent b8529ea9b8
commit 357234865b
2 changed files with 3 additions and 7 deletions

View File

@ -47,11 +47,7 @@ exit_suite() {
ci_fold "end" "" ci_fold "end" ""
fi fi
export NVIM_TEST_CURRENT_SUITE="${NVIM_TEST_CURRENT_SUITE%/*}" export NVIM_TEST_CURRENT_SUITE="${NVIM_TEST_CURRENT_SUITE%/*}"
if test "$1" != "--continue" ; then FAILED=0
exit $FAILED
else
FAILED=0
fi
} }
fail() { fail() {
@ -99,6 +95,6 @@ run_suite() {
enter_suite "$suite_name" enter_suite "$suite_name"
run_test "$command" "$suite_name" run_test "$command" "$suite_name"
exit_suite --continue exit_suite
} }

View File

@ -142,7 +142,7 @@ check_runtime_files() {(
install_nvim() {( install_nvim() {(
if ! build_make install ; then if ! build_make install ; then
fail 'install' E 'make install failed' fail 'install' E 'make install failed'
exit_suite --continue exit_suite
fi fi
"${INSTALL_PREFIX}/bin/nvim" --version "${INSTALL_PREFIX}/bin/nvim" --version