diff options
Diffstat (limited to 'ci/common/suite.sh')
-rw-r--r-- | ci/common/suite.sh | 8 |
1 files changed, 2 insertions, 6 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 } |