aboutsummaryrefslogtreecommitdiff
path: root/t/test-lib.sh
diff options
context:
space:
mode:
authorJunio C Hamano <gitster@pobox.com>2014-03-25 11:08:26 -0700
committerJunio C Hamano <gitster@pobox.com>2014-03-25 11:08:27 -0700
commitcf30bfb8fb9e749637a73685a8de9600ab1fbe5f (patch)
tree36f8b3b615071dba63d558ddd9020cedaa825e76 /t/test-lib.sh
parent3e33860aa1c39429ebfe2542adf9011bd2c9aeba (diff)
parentcb1aefda53aac7c5e8bda58ed86f0682730b330b (diff)
downloadgit-cf30bfb8fb9e749637a73685a8de9600ab1fbe5f.tar.gz
git-cf30bfb8fb9e749637a73685a8de9600ab1fbe5f.tar.xz
Merge branch 'us/printf-not-echo'
* us/printf-not-echo: test-lib.sh: do not "echo" caller-supplied strings rebase -i: do not "echo" random user-supplied strings
Diffstat (limited to 't/test-lib.sh')
-rw-r--r--t/test-lib.sh4
1 files changed, 2 insertions, 2 deletions
diff --git a/t/test-lib.sh b/t/test-lib.sh
index 569b52dc0..87f327ff8 100644
--- a/t/test-lib.sh
+++ b/t/test-lib.sh
@@ -283,7 +283,7 @@ error "Test script did not set test_description."
if test "$help" = "t"
then
- echo "$test_description"
+ printf '%s\n' "$test_description"
exit 0
fi
@@ -334,7 +334,7 @@ test_failure_ () {
test_failure=$(($test_failure + 1))
say_color error "not ok $test_count - $1"
shift
- echo "$@" | sed -e 's/^/# /'
+ printf '%s\n' "$*" | sed -e 's/^/# /'
test "$immediate" = "" || { GIT_EXIT_OK=t; exit 1; }
}