diff options
author | Junio C Hamano <gitster@pobox.com> | 2011-04-23 22:34:13 -0700 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2011-04-23 22:34:43 -0700 |
commit | 3749fde561ad495dea74b0d3a13bba571068396d (patch) | |
tree | 7af166ba620df483c4196663a33f682cba3f2447 /t/t4002-diff-basic.sh | |
parent | 87b50542a08ac6caa083ddc376e674424e37940a (diff) | |
download | git-3749fde561ad495dea74b0d3a13bba571068396d.tar.gz git-3749fde561ad495dea74b0d3a13bba571068396d.tar.xz |
test: use $_z40 from test-lib
There is no need to duplicate the definition of $_z40 and $_x40 that
test-lib.sh supplies the test scripts.
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 | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/t/t4002-diff-basic.sh b/t/t4002-diff-basic.sh index 73441a516..66e1a52c6 100755 --- a/t/t4002-diff-basic.sh +++ b/t/t4002-diff-basic.sh @@ -126,15 +126,12 @@ cat >.test-recursive-AB <<\EOF :100644 100644 3fdbe17fd013303a2e981e1ca1c6cd6e72789087 7e09d6a3a14bd630913e8c75693cea32157b606d M Z/NM EOF -x40='[0-9a-f][0-9a-f][0-9a-f][0-9a-f][0-9a-f]' -x40="$x40$x40$x40$x40$x40$x40$x40$x40" -z40='0000000000000000000000000000000000000000' cmp_diff_files_output () { # diff-files never reports additions. Also it does not fill in the # 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]*\) /'$z40'\1 /' && + -e '/^:000000 /d;s/'$_x40'\( [MCRNDU][0-9]*\) /'$_z40'\1 /' && test_cmp "$1" .test-tmp } |