diff options
author | Andre Heinecke <[email protected]> | 2016-05-13 11:16:12 +0000 |
---|---|---|
committer | Andre Heinecke <[email protected]> | 2016-05-13 11:16:12 +0000 |
commit | 52f2295d528029a36a3e0a89c777297762b3fc9b (patch) | |
tree | e69faffe879a97ac116daea69a825d3c2c9d270c /lang/qt/tests/Makefile.am | |
parent | Qt: Add missing copyright header in test (diff) | |
download | gpgme-52f2295d528029a36a3e0a89c777297762b3fc9b.tar.gz gpgme-52f2295d528029a36a3e0a89c777297762b3fc9b.zip |
Qt: Add keyLocateJob and test for it
* configure.ac (LIBQGPGME_LT_REVISION): Bump.
* lang/qt/src/protocol.h (locateKeysJob): Add Job.
* lang/qt/src/protocol_p.h (locateKeysJob): Implement.
* lang/qt/tests/Makefile.am: Add t-keylocate.
* lang/qt/tests/t-keylocate.cpp: New.
Diffstat (limited to 'lang/qt/tests/Makefile.am')
-rw-r--r-- | lang/qt/tests/Makefile.am | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/lang/qt/tests/Makefile.am b/lang/qt/tests/Makefile.am index 6da9d29c..4a14e63d 100644 --- a/lang/qt/tests/Makefile.am +++ b/lang/qt/tests/Makefile.am @@ -24,9 +24,9 @@ TESTS_ENVIRONMENT = GNUPGHOME=$(abs_builddir) EXTRA_DIST = initial.test -TESTS = initial.test t-keylist +TESTS = initial.test t-keylist t-keylocate -moc_files = t-keylist.moc +moc_files = t-keylist.moc t-keylocate.moc AM_LDFLAGS = -no-install @@ -47,12 +47,13 @@ check-local: ./pubring-stamp initial.test : check-local t_keylist_SOURCES = t-keylist.cpp +t_keylocate_SOURCES = t-keylocate.cpp nodist_t_keylist_SOURCES = $(moc_files) BUILT_SOURCES = $(moc_files) -noinst_PROGRAMS = t-keylist +noinst_PROGRAMS = t-keylist t-keylocate CLEANFILES = secring.gpg pubring.gpg pubring.kbx trustdb.gpg dirmngr.conf \ gpg-agent.conf pubring.kbx~ S.gpg-agent gpg.conf pubring.gpg~ \ |