aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--ci/common/suite.sh8
-rw-r--r--ci/common/test.sh2
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