aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJames McCoy <jamessan@jamessan.com>2022-02-11 11:12:49 -0500
committerGitHub <noreply@github.com>2022-02-11 11:12:49 -0500
commite3c09cb9ed8012db892ea62573dd3defce78f92f (patch)
treeac1b5c942ca4a3c133b50c40bef51ea6613f8659
parent4761dd4fc2d7ecaef3516b3931589e4310bc6db7 (diff)
parentc373226ee7e63adf136b54bc59e307c4af36f015 (diff)
downloadrneovim-e3c09cb9ed8012db892ea62573dd3defce78f92f.tar.gz
rneovim-e3c09cb9ed8012db892ea62573dd3defce78f92f.tar.bz2
rneovim-e3c09cb9ed8012db892ea62573dd3defce78f92f.zip
Merge pull request #17284 from dundargoc/ci/reduce-noise
-rwxr-xr-xci/common/submit_coverage.sh2
-rw-r--r--ci/common/suite.sh3
-rw-r--r--ci/common/test.sh1
3 files changed, 1 insertions, 5 deletions
diff --git a/ci/common/submit_coverage.sh b/ci/common/submit_coverage.sh
index cb6ab62b5b..f781ca8e5e 100755
--- a/ci/common/submit_coverage.sh
+++ b/ci/common/submit_coverage.sh
@@ -4,7 +4,7 @@
# Args:
# $1: Flag(s) for codecov, separated by comma.
-set -ex
+set -e
# Change to grandparent dir (POSIXly).
CDPATH='' cd -P -- "$(dirname -- "$0")/../.." || exit
diff --git a/ci/common/suite.sh b/ci/common/suite.sh
index 8f6d81e264..f33f8b89d1 100644
--- a/ci/common/suite.sh
+++ b/ci/common/suite.sh
@@ -29,17 +29,14 @@ ci_fold() {
}
enter_suite() {
- set +x
FAILED=0
rm -f "${END_MARKER}"
local suite_name="$1"
export NVIM_TEST_CURRENT_SUITE="${NVIM_TEST_CURRENT_SUITE}/$suite_name"
ci_fold "start" "$suite_name"
- set -x
}
exit_suite() {
- set +x
if test $FAILED -ne 0 ; then
echo "Suite ${NVIM_TEST_CURRENT_SUITE} failed, summary:"
echo "${FAIL_SUMMARY}"
diff --git a/ci/common/test.sh b/ci/common/test.sh
index c5f67edd2c..f211a2e7aa 100644
--- a/ci/common/test.sh
+++ b/ci/common/test.sh
@@ -119,7 +119,6 @@ run_oldtests() {(
)}
check_runtime_files() {(
- set +x
local test_name="$1" ; shift
local message="$1" ; shift
local tst="$1" ; shift