Mercurial > hg
annotate tests/test-gpg @ 11213:3d61813a300e
keyword: add 2 svn-like date filters
svnisodate yields the format the date in svn's Id keyword expands to.
svnutcdate yields the format svn's Date/LastChangedDate expands to.
http://svnbook.red-bean.com/en/1.5/svn.advanced.props.special.keywords.html
author | Christian Ebert <blacktrash@gmx.net> |
---|---|
date | Tue, 18 May 2010 22:16:38 +0200 |
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 |