summaryrefslogtreecommitdiffstats
path: root/tests
diff options
context:
space:
mode:
authorPatrick McDermott <patrick.mcdermott@libiquity.com>2019-04-21 16:28:19 (EDT)
committer Patrick McDermott <patrick.mcdermott@libiquity.com>2019-04-21 16:28:19 (EDT)
commitb085e8bb092da4899c4f8c38d0b819a2943f0df6 (patch)
tree86be9cdb845fd9a82c39e7174f31ba52fcd1d170 /tests
parent908b0660688a1ccda20b92bb34fd94d3569b4108 (diff)
tests/aux/tap-functions.sh: Drop `set -x`
Diffstat (limited to 'tests')
-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 24a8df3..dd634b3 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_'.