summaryrefslogtreecommitdiff
path: root/t/test-lib.sh
diff options
context:
space:
mode:
authorLibravatar Junio C Hamano <gitster@pobox.com>2014-04-03 13:39:04 -0700
committerLibravatar Junio C Hamano <gitster@pobox.com>2014-04-03 13:39:04 -0700
commit9cbd46aee1d803d8d4d634b4eed19065f19198cb (patch)
tree2450641b473fc1b1499cf4bd7a4b1c8daa1f92b7 /t/test-lib.sh
parentMerge branch 'rr/doc-merge-strategies' into maint (diff)
parenttest-lib.sh: do not "echo" caller-supplied strings (diff)
downloadtgif-9cbd46aee1d803d8d4d634b4eed19065f19198cb.tar.xz
Merge branch 'us/printf-not-echo' into maint
* 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 1531c241c0..3c7cb1d774 100644
--- a/t/test-lib.sh
+++ b/t/test-lib.sh
@@ -277,7 +277,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
@@ -328,7 +328,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; }
}