diff options
author | Dundar Göc <gocdundar@gmail.com> | 2022-02-03 23:36:07 +0100 |
---|---|---|
committer | Dundar Göc <gocdundar@gmail.com> | 2022-02-11 16:53:34 +0100 |
commit | c373226ee7e63adf136b54bc59e307c4af36f015 (patch) | |
tree | ac1b5c942ca4a3c133b50c40bef51ea6613f8659 | |
parent | 4761dd4fc2d7ecaef3516b3931589e4310bc6db7 (diff) | |
download | rneovim-c373226ee7e63adf136b54bc59e307c4af36f015.tar.gz rneovim-c373226ee7e63adf136b54bc59e307c4af36f015.tar.bz2 rneovim-c373226ee7e63adf136b54bc59e307c4af36f015.zip |
ci: disable tracing (set -x) from the shell scripts
-rwxr-xr-x | ci/common/submit_coverage.sh | 2 | ||||
-rw-r--r-- | ci/common/suite.sh | 3 | ||||
-rw-r--r-- | ci/common/test.sh | 1 |
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 |