diff options
author | Dundar Göc <gocdundar@gmail.com> | 2022-02-07 13:55:32 +0100 |
---|---|---|
committer | Dundar Göc <gocdundar@gmail.com> | 2022-02-10 09:43:51 +0100 |
commit | 357234865b595232ba39a0f90be1974721e3aca2 (patch) | |
tree | dceba2afedfcd0f409953b5b0bb3028fd1d38a0f | |
parent | b8529ea9b85d9c521fe881f03a4ed475c6558693 (diff) | |
download | rneovim-357234865b595232ba39a0f90be1974721e3aca2.tar.gz rneovim-357234865b595232ba39a0f90be1974721e3aca2.tar.bz2 rneovim-357234865b595232ba39a0f90be1974721e3aca2.zip |
ci: remove continue flag from exit_suite since it's always needed
-rw-r--r-- | ci/common/suite.sh | 8 | ||||
-rw-r--r-- | ci/common/test.sh | 2 |
2 files changed, 3 insertions, 7 deletions
diff --git a/ci/common/suite.sh b/ci/common/suite.sh index 0c01f3a0ef..8aa9232cdc 100644 --- a/ci/common/suite.sh +++ b/ci/common/suite.sh @@ -47,11 +47,7 @@ exit_suite() { ci_fold "end" "" fi export NVIM_TEST_CURRENT_SUITE="${NVIM_TEST_CURRENT_SUITE%/*}" - if test "$1" != "--continue" ; then - exit $FAILED - else - FAILED=0 - fi + FAILED=0 } fail() { @@ -99,6 +95,6 @@ run_suite() { enter_suite "$suite_name" run_test "$command" "$suite_name" - exit_suite --continue + exit_suite } diff --git a/ci/common/test.sh b/ci/common/test.sh index 7d3c4c8b08..c5f67edd2c 100644 --- a/ci/common/test.sh +++ b/ci/common/test.sh @@ -142,7 +142,7 @@ check_runtime_files() {( install_nvim() {( if ! build_make install ; then fail 'install' E 'make install failed' - exit_suite --continue + exit_suite fi "${INSTALL_PREFIX}/bin/nvim" --version |