##// END OF EJS Templates
test-gpg: suppress secure memory warning...
David Champion -
r9041:6e5e5484 default
parent child Browse files
Show More
@@ -1,28 +1,28
1 1 #!/bin/sh
2 2
3 3 "$TESTDIR/hghave" gpg || exit 80
4 4
5 5 cat <<EOF >> $HGRCPATH
6 6 [extensions]
7 7 gpg=
8 8
9 9 [gpg]
10 cmd=gpg --no-permission-warning --homedir $TESTDIR/gpg
10 cmd=gpg --no-permission-warning --no-secmem-warning --homedir $TESTDIR/gpg
11 11 EOF
12 12
13 13 hg init r
14 14 cd r
15 15 echo foo > foo
16 16 hg ci -Amfoo
17 17
18 18 echo '% no signatures'
19 19 hg sigs
20 20
21 21 echo '% hg sign 0'
22 22 hg sign 0
23 23
24 24 echo '% hg sigs'
25 25 hg sigs
26 26
27 27 echo '% hg sigcheck 0'
28 28 hg sigcheck 0
General Comments 0
You need to be logged in to leave comments. Login now