diff options
author | brian m. carlson <sandals@crustytoothpaste.net> | 2018-05-13 02:24:15 +0000 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2018-05-14 11:02:01 +0900 |
commit | 2ece6ad2819078733d8fb8a7cd47929786631ed1 (patch) | |
tree | 949a837a8dfdd84945f35e677053e7be82727299 /t/t4002-diff-basic.sh | |
parent | t/test-lib: introduce OID_REGEX (diff) | |
download | tgif-2ece6ad2819078733d8fb8a7cd47929786631ed1.tar.xz |
t: switch $_x40 to $OID_REGEX
Switch all uses of $_x40 to $OID_REGEX so that they work correctly with
larger hashes. This commit was created by using the following sed
command to modify all files in the t directory except t/test-lib.sh:
sed -i 's/\$_x40/$OID_REGEX/g'
Signed-off-by: brian m. carlson <sandals@crustytoothpaste.net>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 't/t4002-diff-basic.sh')
-rwxr-xr-x | t/t4002-diff-basic.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/t/t4002-diff-basic.sh b/t/t4002-diff-basic.sh index 5af773d6f7..3a6c21e825 100755 --- a/t/t4002-diff-basic.sh +++ b/t/t4002-diff-basic.sh @@ -131,7 +131,7 @@ cmp_diff_files_output () { # object ID for the changed files because it wants you to look at the # filesystem. sed <"$2" >.test-tmp \ - -e '/^:000000 /d;s/'$_x40'\( [MCRNDU][0-9]*\) /'$ZERO_OID'\1 /' && + -e '/^:000000 /d;s/'$OID_REGEX'\( [MCRNDU][0-9]*\) /'$ZERO_OID'\1 /' && test_cmp "$1" .test-tmp } |