Mercurial > hg
annotate tests/test-gpg @ 10628:6227c8d669d5
rebase: improve output of hg pull --rebase (issue2072)
author | Sune Foldager <cryo@cyanite.org> |
---|---|
date | Wed, 10 Mar 2010 12:38:33 +0100 |
parents | 6e5e548452de |
children |
rev | line source |
---|---|
8809 | 1 #!/bin/sh |
2 | |
3 "$TESTDIR/hghave" gpg || exit 80 | |
4 | |
5 cat <<EOF >> $HGRCPATH | |
6 [extensions] | |
7 gpg= | |
8 | |
9 [gpg] | |
9041
6e5e548452de
test-gpg: suppress secure memory warning
David Champion <dgc@uchicago.edu>
parents:
8809
diff
changeset
|
10 cmd=gpg --no-permission-warning --no-secmem-warning --homedir $TESTDIR/gpg |
8809 | 11 EOF |
12 | |
13 hg init r | |
14 cd r | |
15 echo foo > foo | |
16 hg ci -Amfoo | |
17 | |
18 echo '% no signatures' | |
19 hg sigs | |
20 | |
21 echo '% hg sign 0' | |
22 hg sign 0 | |
23 | |
24 echo '% hg sigs' | |
25 hg sigs | |
26 | |
27 echo '% hg sigcheck 0' | |
28 hg sigcheck 0 |