aboutsummaryrefslogtreecommitdiffstats
path: root/lang/qt/tests/Makefile.am
diff options
context:
space:
mode:
authorAndre Heinecke <[email protected]>2016-04-11 15:46:03 +0000
committerAndre Heinecke <[email protected]>2016-04-11 15:46:03 +0000
commitd9f7a18ed88127e7f05d770d55118d1e928f3b3f (patch)
treef16069e8e559da981ced228015865ec12520f276 /lang/qt/tests/Makefile.am
parentQt: Remove remaining boost usage (diff)
downloadgpgme-d9f7a18ed88127e7f05d770d55118d1e928f3b3f.tar.gz
gpgme-d9f7a18ed88127e7f05d770d55118d1e928f3b3f.zip
Qt: Fix unit test by adding initial.test dep
* lang/qt/tests/t-keylist.cpp: Verify that GNUPGHOME is set. * lang/qt/tests/initial.test: New dummy test. * lang/qt/tests/Makefile.am: Add dependency to initial.test -- Feels weird but this follows the pattern in tests/gpg/Makefile.am and solves the problem that the environment is dirty.
Diffstat (limited to 'lang/qt/tests/Makefile.am')
-rw-r--r--lang/qt/tests/Makefile.am14
1 files changed, 10 insertions, 4 deletions
diff --git a/lang/qt/tests/Makefile.am b/lang/qt/tests/Makefile.am
index 3b483fe8..def50c86 100644
--- a/lang/qt/tests/Makefile.am
+++ b/lang/qt/tests/Makefile.am
@@ -22,7 +22,9 @@ GPG = gpg
TESTS_ENVIRONMENT = GNUPGHOME=$(abs_builddir)
-TESTS = t-keylist
+EXTRA_DIST = initial.test
+
+TESTS = initial.test t-keylist
moc_files = t-keylist.moc
@@ -38,7 +40,11 @@ AM_CPPFLAGS = -I$(top_builddir)/src @GPG_ERROR_CFLAGS@ \
-I$(top_srcdir)/lang/cpp/src -I$(top_srcdir)/lang/qt/src \
-DTOP_SRCDIR="$(top_srcdir)"
-check-local: ./t-keylist ./pubring-stamp
+check-local: ./pubring-stamp
+
+# To guarantee that check-local is run before any tests we
+# add this dependency:
+initial.test : check-local
t_keylist_SOURCES = t-keylist.cpp t-keylist.h
@@ -58,8 +64,8 @@ export GNUPGHOME := $(abs_builddir)
$(top_srcdir)/tests/gpg/secdemo.asc
$(GPG) --no-permission-warning \
--import $(top_srcdir)/tests/gpg/pubdemo.asc
- -$(GPG) --no-permission-warning \
- --import $(top_srcdir)/tests/gpg/secdemo.asc
+ $(GPG) --no-permission-warning \
+ --import $(top_srcdir)/tests/gpg/secdemo.asc
touch ./pubring-stamp
.cpp.moc: