diff options
Diffstat (limited to 'tests')
-rw-r--r-- | tests/pkits/ChangeLog | 4 | ||||
-rw-r--r-- | tests/pkits/Makefile.am | 2 |
2 files changed, 5 insertions, 1 deletions
diff --git a/tests/pkits/ChangeLog b/tests/pkits/ChangeLog index 185ff98bc..9a8846f1d 100644 --- a/tests/pkits/ChangeLog +++ b/tests/pkits/ChangeLog @@ -1,3 +1,7 @@ +2009-03-03 Werner Koch <[email protected]> + + * Makefile.am (run-all-tests): Also use /bin/pwd here. + 2009-02-19 Werner Koch <[email protected]> * Makefile.am (TESTS_ENVIRONMENT): Use /bin/pwd diff --git a/tests/pkits/Makefile.am b/tests/pkits/Makefile.am index 6285da43c..f59e5ec97 100644 --- a/tests/pkits/Makefile.am +++ b/tests/pkits/Makefile.am @@ -64,7 +64,7 @@ inittests.stamp: inittests run-all-tests: inittests.stamp @set -e; \ - GNUPGHOME=`pwd`; export GNUPGHOME;\ + GNUPGHOME=`/bin/pwd`; export GNUPGHOME;\ unset GPG_AGENT_INFO; \ for tst in $(testscripts); do \ if ./$${tst}; then : ; \ |