diff options
author | Stef Walter <stefw@collabora.co.uk> | 2011-06-20 21:17:03 +0200 |
---|---|---|
committer | Stef Walter <stefw@collabora.co.uk> | 2011-07-06 12:49:26 +0200 |
commit | f1ca5d5b57909534d8b21f9be455c94ca57e6636 (patch) | |
tree | 1b0e46bea3f2d2af81525c4aa11914d1c099b995 /tests/Makefile.am | |
parent | 0a793a9e462727f434f6283a712b37ab30df5e95 (diff) |
Implement support for registering and calling pinfile callbacks
* These are callbacks that hanlde the pinfile part of a PKCS#11 URI.
* One library can register a callback that another can then call
in a thread-safe and simple fashion.
Diffstat (limited to 'tests/Makefile.am')
-rw-r--r-- | tests/Makefile.am | 12 |
1 files changed, 11 insertions, 1 deletions
diff --git a/tests/Makefile.am b/tests/Makefile.am index 6b988b8..cde804f 100644 --- a/tests/Makefile.am +++ b/tests/Makefile.am @@ -8,22 +8,32 @@ INCLUDES = \ noinst_PROGRAMS = \ hash-test \ + ptr-array-test \ conf-test \ - uri-test + uri-test \ + pin-test hash_test_LDADD = \ $(top_builddir)/p11-kit/libp11-kit-testable.la +ptr_array_test_LDADD = \ + $(top_builddir)/p11-kit/libp11-kit-testable.la + conf_test_LDADD = \ $(top_builddir)/p11-kit/libp11-kit-testable.la uri_test_LDADD = \ $(top_builddir)/p11-kit/libp11-kit-testable.la +pin_test_LDADD = \ + $(top_builddir)/p11-kit/libp11-kit-testable.la + check-am: ./hash-test + ./ptr-array-test ./conf-test ./uri-test + ./pin-test EXTRA_DIST = \ cutest \ |