tests/test-gpg
author David Champion <dgc@uchicago.edu>
Sun, 05 Jul 2009 13:59:25 -0500
changeset 9283 b3ee4c2e1ff5
parent 8809 6fce36336e42
permissions -rwxr-xr-x
test-gpg: suppress secure memory warning Some platforms (Solaris for one) does not support secure memory and would give a warning.

#!/bin/sh

"$TESTDIR/hghave" gpg || exit 80

cat <<EOF >> $HGRCPATH
[extensions]
gpg=

[gpg]
cmd=gpg --no-permission-warning --no-secmem-warning --homedir $TESTDIR/gpg
EOF

hg init r
cd r
echo foo > foo
hg ci -Amfoo

echo '% no signatures'
hg sigs

echo '% hg sign 0'
hg sign 0

echo '% hg sigs'
hg sigs

echo '% hg sigcheck 0'
hg sigcheck 0