ci: disable tracing (set -x) from the shell scripts

This commit is contained in:
Dundar Göc 2022-02-03 23:36:07 +01:00
parent 4761dd4fc2
commit c373226ee7
3 changed files with 1 additions and 5 deletions

View File

@ -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

View File

@ -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}"

View File

@ -119,7 +119,6 @@ run_oldtests() {(
)}
check_runtime_files() {(
set +x
local test_name="$1" ; shift
local message="$1" ; shift
local tst="$1" ; shift