Andrew's git
/
gitweb.git
/ diff
summary
|
log
|
commit
| diff |
tree
commit
grep
author
committer
pickaxe
?
re
Merge branch 'mg/verify-commit' into maint
author
Junio C Hamano
<gitster@pobox.com>
Mon, 23 Mar 2015 18:23:19 +0000
(11:23 -0700)
committer
Junio C Hamano
<gitster@pobox.com>
Mon, 23 Mar 2015 18:23:20 +0000
(11:23 -0700)
Workarounds for certain build of GPG that triggered false breakage
in a test.
* mg/verify-commit:
t7510: do not fail when gpg warns about insecure memory
t/t7510-signed-commit.sh
patch
|
blob
|
history
raw
(from parent 1:
f63ed08
)
diff --git
a/t/t7510-signed-commit.sh
b/t/t7510-signed-commit.sh
index 474dab381aef027207026cb938df7a09cc7a9056..3cef18cfdaa587d12aafec5fe32742f0356fc501 100755
(executable)
--- a/
t/t7510-signed-commit.sh
+++ b/
t/t7510-signed-commit.sh
@@
-86,8
+86,8
@@
test_expect_success GPG 'show signed commit with signature' '
git show -s --show-signature initial >show &&
git verify-commit -v initial >verify.1 2>verify.2 &&
git cat-file commit initial >cat &&
- grep -v
"gp
g: " show >show.commit &&
- grep
"gp
g: " show >show.gpg &&
+ grep -v
-e "gpg: " -e "Warnin
g: " show >show.commit &&
+ grep
-e "gpg: " -e "Warnin
g: " show >show.gpg &&
grep -v "^ " cat | grep -v "^gpgsig " >cat.commit &&
test_cmp show.commit commit &&
test_cmp show.gpg verify.2 &&