mirror of
git://git.gnupg.org/gnupg.git
synced 2024-10-31 20:08:43 +01:00
Enable the tests directory.
This commit is contained in:
parent
711c4853d6
commit
02f20a7506
@ -1,3 +1,12 @@
|
|||||||
|
2003-12-23 Werner Koch <wk@gnupg.org>
|
||||||
|
|
||||||
|
* configure.ac, Makefile.am: Enable the tests directory.
|
||||||
|
|
||||||
|
2003-12-19 Werner Koch <wk@gnupg.org>
|
||||||
|
|
||||||
|
* configure.ac: Now require libgcrypt 1.1.91 to help testing the
|
||||||
|
latest libgcrypt changes. Requires libksab 0.9.1.
|
||||||
|
|
||||||
2003-12-17 Werner Koch <wk@gnupg.org>
|
2003-12-17 Werner Koch <wk@gnupg.org>
|
||||||
|
|
||||||
* configure.ac: Requires now libassuan 0.6.2.
|
* configure.ac: Requires now libassuan 0.6.2.
|
||||||
|
@ -46,11 +46,7 @@ scd =
|
|||||||
endif
|
endif
|
||||||
|
|
||||||
SUBDIRS = m4 intl jnlib common kbx \
|
SUBDIRS = m4 intl jnlib common kbx \
|
||||||
${gpg} ${sm} ${agent} ${scd} po doc
|
${gpg} ${sm} ${agent} ${scd} po doc tests
|
||||||
|
|
||||||
#tests
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
dist-hook:
|
dist-hook:
|
||||||
@set -e; \
|
@set -e; \
|
||||||
|
4
NEWS
4
NEWS
@ -2,8 +2,8 @@ Noteworthy changes in version 1.9.3 (unreleased)
|
|||||||
------------------------------------------------
|
------------------------------------------------
|
||||||
|
|
||||||
* New gpgsm options --{enable,disable}-ocsp to validate keys using
|
* New gpgsm options --{enable,disable}-ocsp to validate keys using
|
||||||
OCSP. This requires a not yet released DirMngr 0.5.1. Default is
|
OCSP. This option requires a not yet released DirMngr version.
|
||||||
disabled.
|
Default is disabled.
|
||||||
|
|
||||||
* The --log-file option may now be used to print logs to a socket.
|
* The --log-file option may now be used to print logs to a socket.
|
||||||
Prefix the socket name with "socket://" to enable this. This does
|
Prefix the socket name with "socket://" to enable this. This does
|
||||||
|
16
TODO
16
TODO
@ -33,7 +33,7 @@ might want to have an agent context for each service request
|
|||||||
* sm/gpgsm.c
|
* sm/gpgsm.c
|
||||||
** Support --output
|
** Support --output
|
||||||
** mark all unimplemented commands and options.
|
** mark all unimplemented commands and options.
|
||||||
** Print a hint when of MD2 is the cause for a problem.
|
** Print a hint when MD2 is the cause for a problem.
|
||||||
|
|
||||||
* sm/keydb.c
|
* sm/keydb.c
|
||||||
** Check file permissions
|
** Check file permissions
|
||||||
@ -71,10 +71,16 @@ might want to have an agent context for each service request
|
|||||||
** Enhance with card compatibility check
|
** Enhance with card compatibility check
|
||||||
|
|
||||||
* scd/app-openpgp
|
* scd/app-openpgp
|
||||||
Do a pre-check to make sure that the minimum length condition of the
|
|
||||||
PINs are satisied - this avoid useless retry counter decrements in
|
|
||||||
case the PIN dialog is accidently hit.
|
|
||||||
|
|
||||||
Must check that the fingerprint used is not the one of the
|
Must check that the fingerprint used is not the one of the
|
||||||
authentication key. Old GnuPG versions seem to encode the wrong
|
authentication key. Old GnuPG versions seem to encode the wrong
|
||||||
keyID.
|
keyID.
|
||||||
|
|
||||||
|
* Store the revocation status directly in the Keybox
|
||||||
|
|
||||||
|
* tests
|
||||||
|
** Makefile.am
|
||||||
|
We use printf(1) to setup the library path, this is not portable.
|
||||||
|
Furthermore LD_LIBRARY_PATH is not used on all systems. It doesn't
|
||||||
|
matter for now, because we use some GNU/*BSDish features anyway.
|
||||||
|
|
||||||
|
|
||||||
|
@ -30,9 +30,9 @@ AC_INIT(gnupg, 1.9.3-cvs, gnupg-devel@gnupg.org)
|
|||||||
# sufficient.
|
# sufficient.
|
||||||
development_version=yes
|
development_version=yes
|
||||||
NEED_GPG_ERROR_VERSION=0.6
|
NEED_GPG_ERROR_VERSION=0.6
|
||||||
NEED_LIBGCRYPT_VERSION=1.1.90
|
NEED_LIBGCRYPT_VERSION=1.1.91
|
||||||
NEED_LIBASSUAN_VERSION=0.6.2
|
NEED_LIBASSUAN_VERSION=0.6.2
|
||||||
NEED_KSBA_VERSION=0.9.0
|
NEED_KSBA_VERSION=0.9.1
|
||||||
NEED_OPENSC_VERSION=0.8.0
|
NEED_OPENSC_VERSION=0.8.0
|
||||||
|
|
||||||
|
|
||||||
@ -1074,9 +1074,9 @@ sm/Makefile
|
|||||||
agent/Makefile
|
agent/Makefile
|
||||||
scd/Makefile
|
scd/Makefile
|
||||||
doc/Makefile
|
doc/Makefile
|
||||||
|
tests/Makefile
|
||||||
])
|
])
|
||||||
AC_OUTPUT
|
AC_OUTPUT
|
||||||
#tests/Makefile
|
|
||||||
|
|
||||||
|
|
||||||
echo "
|
echo "
|
||||||
|
Loading…
Reference in New Issue
Block a user