Andrew's git
/
gitweb.git
/ diff
summary
|
log
|
commit
| diff |
tree
commit
grep
author
committer
pickaxe
?
re
t4022: abstract away SHA-1-specific constants
author
brian m. carlson
<sandals@crustytoothpaste.net>
Mon, 21 May 2018 02:01:38 +0000
(
02:01
+0000)
committer
Junio C Hamano
<gitster@pobox.com>
Mon, 21 May 2018 04:55:48 +0000
(13:55 +0900)
Adjust the test so that it computes variables for blobs instead of using
hard-coded hashes.
Signed-off-by: brian m. carlson <sandals@crustytoothpaste.net>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
t/t4022-diff-rewrite.sh
patch
|
blob
|
history
raw
|
patch
|
inline
| side by side (parent:
f2fffc1
)
diff --git
a/t/t4022-diff-rewrite.sh
b/t/t4022-diff-rewrite.sh
index cb51d9f9d47d61c5b73de78edeeedcc7652f262d..6d1c3d949c78bc8fd5a82dbaee519163a8653e86 100755
(executable)
--- a/
t/t4022-diff-rewrite.sh
+++ b/
t/t4022-diff-rewrite.sh
@@
-13,6
+13,8
@@
test_expect_success setup '
"nopqrstuvwxyzabcdefghijklmNOPQRSTUVWXYZABCDEFGHIJKLM" \
<"$TEST_DIRECTORY"/../COPYING >test &&
echo "to be deleted" >test2 &&
"nopqrstuvwxyzabcdefghijklmNOPQRSTUVWXYZABCDEFGHIJKLM" \
<"$TEST_DIRECTORY"/../COPYING >test &&
echo "to be deleted" >test2 &&
+ blob=$(git hash-object test2) &&
+ blob=$(git rev-parse --short $blob) &&
git add test2
'
git add test2
'
@@
-27,7
+29,7
@@
test_expect_success 'detect rewrite' '
cat >expect <<EOF
diff --git a/test2 b/test2
deleted file mode 100644
cat >expect <<EOF
diff --git a/test2 b/test2
deleted file mode 100644
-index
4202011
..0000000
+index
$blob
..0000000
--- a/test2
+++ /dev/null
@@ -1 +0,0 @@
--- a/test2
+++ /dev/null
@@ -1 +0,0 @@
@@
-43,7
+45,7
@@
test_expect_success 'show deletion diff without -D' '
cat >expect <<EOF
diff --git a/test2 b/test2
deleted file mode 100644
cat >expect <<EOF
diff --git a/test2 b/test2
deleted file mode 100644
-index
4202011
..0000000
+index
$blob
..0000000
EOF
test_expect_success 'suppress deletion diff with -D' '
EOF
test_expect_success 'suppress deletion diff with -D' '