diff options
author | P. J. McDermott <pj@pehjota.net> | 2017-07-22 22:15:00 (EDT) |
---|---|---|
committer | P. J. McDermott <pj@pehjota.net> | 2017-07-22 22:15:00 (EDT) |
commit | eed4e5cdf19b0389e109e4e6c3c9b2b53cf5923c (patch) | |
tree | 664d824b64bab70f08cabfaf5920cd681e596633 /tests/aux | |
parent | 746e2be367841d8f58e1e92fd57ee31332c61270 (diff) |
tests/aux/tap-functions.sh: Drop `set -x`
Diffstat (limited to 'tests/aux')
-rw-r--r-- | tests/aux/tap-functions.sh | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/tests/aux/tap-functions.sh b/tests/aux/tap-functions.sh index 17a6c11..29ff437 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_'. |