mirror of
git://git.gnupg.org/gnupg.git
synced 2025-07-03 22:56:33 +02:00
Fix bug 1001.
Documentation updates.
This commit is contained in:
parent
943f783de7
commit
310f45b618
9 changed files with 32 additions and 9 deletions
|
@ -1,3 +1,8 @@
|
|||
2009-02-19 Werner Koch <wk@g10code.com>
|
||||
|
||||
* Makefile.am (TESTS_ENVIRONMENT): Use /bin/pwd.
|
||||
* inittests: Ditto. Fixes bug#1001.
|
||||
|
||||
2008-10-20 Werner Koch <wk@g10code.com>
|
||||
|
||||
* asschk.c (cmd_echo): Mark unused arg.
|
||||
|
|
|
@ -29,9 +29,11 @@ SUBDIRS = ${openpgp} . pkits
|
|||
|
||||
GPGSM = ../sm/gpgsm
|
||||
|
||||
|
||||
TESTS_ENVIRONMENT = GNUPGHOME=`pwd` GPG_AGENT_INFO= LC_ALL=C GPGSM=$(GPGSM) \
|
||||
$(srcdir)/runtest
|
||||
# Note that we need to use /bin/pwd so that we don't get into trouble
|
||||
# if the shell used for inittests would uses an internal version of
|
||||
# pwd which handles symlinks differently.
|
||||
TESTS_ENVIRONMENT = GNUPGHOME=`/bin/pwd` GPG_AGENT_INFO= LC_ALL=C \
|
||||
GPGSM=$(GPGSM) $(srcdir)/runtest
|
||||
|
||||
testscripts = sm-sign+verify sm-verify
|
||||
|
||||
|
|
|
@ -51,7 +51,7 @@ if [ "$1" = "--clean" ]; then
|
|||
exit 0
|
||||
fi
|
||||
|
||||
if [ "$GNUPGHOME" != "`pwd`" ]; then
|
||||
if [ "$GNUPGHOME" != "`/bin/pwd`" ]; then
|
||||
echo "inittests: please set GNUPGHOME to the test directory" >&2
|
||||
exit 1
|
||||
fi
|
||||
|
|
|
@ -1,3 +1,8 @@
|
|||
2009-02-19 Werner Koch <wk@g10code.com>
|
||||
|
||||
* Makefile.am (TESTS_ENVIRONMENT): Use /bin/pwd
|
||||
* common.sh: Ditto.
|
||||
|
||||
2008-02-19 Werner Koch <wk@g10code.com>
|
||||
|
||||
* inittests: Unpack test data onlyu if available.
|
||||
|
|
|
@ -20,8 +20,8 @@
|
|||
|
||||
GPGSM = ../../sm/gpgsm
|
||||
|
||||
TESTS_ENVIRONMENT = GNUPGHOME=`pwd` GPG_AGENT_INFO= LC_ALL=C GPGSM=$(GPGSM) \
|
||||
silent=yes
|
||||
TESTS_ENVIRONMENT = GNUPGHOME=`/bin/pwd` GPG_AGENT_INFO= LC_ALL=C \
|
||||
GPGSM=$(GPGSM) silent=yes
|
||||
|
||||
|
||||
testscripts = import-all-certs validate-all-certs \
|
||||
|
|
|
@ -42,7 +42,7 @@ SCRATCH="scratch.$$.tmp"
|
|||
MYTIME="20080508T120000"
|
||||
|
||||
|
||||
if [ "$GNUPGHOME" != "`pwd`" ]; then
|
||||
if [ "$GNUPGHOME" != "`/bin/pwd`" ]; then
|
||||
echo "inittests: please set GNUPGHOME to the tests/pkits directory" >&2
|
||||
exit 1
|
||||
fi
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue