diff options
author | Taylor Blau <me@ttaylorr.com> | 2019-04-04 20:37:42 -0700 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2019-04-05 15:06:04 +0900 |
commit | 5c07647d987d7f74f11ffadd39343c2f1540176c (patch) | |
tree | 354e4bb19f8a9450c89b27e09c2b1987c58e1d98 /t/test-lib-functions.sh | |
parent | aeb582a98374c094361cba1bd756dc6307432c42 (diff) | |
download | git-5c07647d987d7f74f11ffadd39343c2f1540176c.tar.gz |
t: move 'hex2oct' into test-lib-functions.sh
The helper 'hex2oct' is used to convert base-16 encoded data into a
base-8 binary form, and is useful for preparing data for commands that
accept input in a binary format, such as 'git hash-object', via
'printf'.
This helper is defined identically in three separate places throughout
't'. Move the definition to test-lib-function.sh, so that it can be used
in new test suites, and its definition is not redundant.
This will likewise make our job easier in the subsequent commit, which
also uses 'hex2oct'.
Signed-off-by: Taylor Blau <me@ttaylorr.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 't/test-lib-functions.sh')
-rw-r--r-- | t/test-lib-functions.sh | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/t/test-lib-functions.sh b/t/test-lib-functions.sh index 80402a428f..349eabe851 100644 --- a/t/test-lib-functions.sh +++ b/t/test-lib-functions.sh @@ -1202,6 +1202,12 @@ depacketize () { ' } +# Converts base-16 data into base-8. The output is given as a sequence of +# escaped octals, suitable for consumption by 'printf'. +hex2oct () { + perl -ne 'printf "\\%03o", hex for /../g' +} + # Set the hash algorithm in use to $1. Only useful when testing the testsuite. test_set_hash () { test_hash_algo="$1" |