summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorP. J. McDermott <pj@pehjota.net>2022-03-16 21:35:33 (EDT)
committer P. J. McDermott <pj@pehjota.net>2022-03-17 16:17:43 (EDT)
commit89e5655582467a90dc322d7c7f41c6eac7d340d6 (patch)
tree02ca457ddf7313635417a2afd3a9813d216d3e92
parent094e779435f52e7a3b01bcf9a07312386c08825b (diff)
downloadatsign-89e5655582467a90dc322d7c7f41c6eac7d340d6.zip
atsign-89e5655582467a90dc322d7c7f41c6eac7d340d6.tar.gz
atsign-89e5655582467a90dc322d7c7f41c6eac7d340d6.tar.bz2
tests/aux/tap-functions.sh: Drop `set -x`
-rw-r--r--tests/aux/tap-functions.sh2
1 files changed, 0 insertions, 2 deletions
diff --git a/tests/aux/tap-functions.sh b/tests/aux/tap-functions.sh
index 35563ea..e2414b7 100644
--- a/tests/aux/tap-functions.sh
+++ b/tests/aux/tap-functions.sh
@@ -100,7 +100,6 @@ warn_ ()
# reported too, with the REASON (if given) appended.
result_ ()
{
- set +x # Don't pollute the log files.
test $# -gt 0 || bailout_ "result_: missing argument"
tap_result_=$1; shift
case $tap_result_ in
@@ -145,7 +144,6 @@ result_ ()
tap_text_="$tap_text_ # $tap_directive_"${tap_reason_:+" $tap_reason_"}
fi
printf '%s\n' "$tap_text_"
- set -x # Restore shell xtraces.
}
# Shorthands for common usages of 'result_'.