diff options
author | Andre Heinecke <[email protected]> | 2016-05-20 14:04:50 +0000 |
---|---|---|
committer | Andre Heinecke <[email protected]> | 2016-05-20 14:04:50 +0000 |
commit | eaf2d018e63c15cd9a81e5c1fd2fedbf8829f7b9 (patch) | |
tree | 01caf9c0a6ad35c73ff37ac5c05f4e895cfa1311 /lang/qt/tests/Makefile.am | |
parent | Cpp: Ignore STATUS_KEY_CONSIDERED when editing (diff) | |
download | gpgme-eaf2d018e63c15cd9a81e5c1fd2fedbf8829f7b9.tar.gz gpgme-eaf2d018e63c15cd9a81e5c1fd2fedbf8829f7b9.zip |
Qt: Add test for changeownertrust
* lang/qt/tests/t-ownertrust.cpp: New test.
* lang/qt/tests/Makefile.am: Add test.
--
This test would have catched the issue created by not handling
GPGME_STATUS_KEY_CONSIDERED.
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 7658a73a..db40e77e 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 t-keylocate +TESTS = initial.test t-keylist t-keylocate t-ownertrust -moc_files = t-keylist.moc t-keylocate.moc +moc_files = t-keylist.moc t-keylocate.moc t-ownertrust.moc AM_LDFLAGS = -no-install @@ -48,12 +48,13 @@ initial.test : check-local t_keylist_SOURCES = t-keylist.cpp t_keylocate_SOURCES = t-keylocate.cpp +t_ownertrust_SOURCES = t-ownertrust.cpp nodist_t_keylist_SOURCES = $(moc_files) BUILT_SOURCES = $(moc_files) -noinst_PROGRAMS = t-keylist t-keylocate +noinst_PROGRAMS = t-keylist t-keylocate t-ownertrust CLEANFILES = secring.gpg pubring.gpg pubring.kbx trustdb.gpg dirmngr.conf \ gpg-agent.conf pubring.kbx~ S.gpg-agent gpg.conf pubring.gpg~ \ |