diff options
author | Justus Winter <[email protected]> | 2016-07-06 08:59:18 +0000 |
---|---|---|
committer | Justus Winter <[email protected]> | 2016-07-07 12:10:36 +0000 |
commit | 52efcf1ee9fc8ba4c6bd23d8fe4f5f7993ba9fb1 (patch) | |
tree | 237399ae677b95835d53b188047d7dac57493e54 /lang/python/tests/Makefile.am | |
parent | qt: Fix distcheck. (diff) | |
download | gpgme-52efcf1ee9fc8ba4c6bd23d8fe4f5f7993ba9fb1.tar.gz gpgme-52efcf1ee9fc8ba4c6bd23d8fe4f5f7993ba9fb1.zip |
python: Fix distcheck.
* lang/python/INSTALL: Drop obsolete file.
* lang/python/Makefile.am (EXTRA_DIST): Add missing files.
(CLEANFILES): Remove generated files.
(clean-local): Fix permissions of copied files.
* lang/python/tests/Makefile.am (TESTS): Use our own setup and
teardown scripts.
(EXTRA_DIST): Add missing files.
* lang/python/tests/final.py: New file.
* lang/python/tests/initial.py: Likewise.
Signed-off-by: Justus Winter <[email protected]>
Diffstat (limited to 'lang/python/tests/Makefile.am')
-rw-r--r-- | lang/python/tests/Makefile.am | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/lang/python/tests/Makefile.am b/lang/python/tests/Makefile.am index b51562cc..69985bb0 100644 --- a/lang/python/tests/Makefile.am +++ b/lang/python/tests/Makefile.am @@ -49,9 +49,8 @@ py_tests = t-wrapper.py \ t-file-name.py \ t-idiomatic.py -TESTS = $(top_srcdir)/tests/gpg/initial.test \ - $(py_tests) \ - $(top_srcdir)/tests/gpg/final.test +TESTS = initial.py $(py_tests) final.py +EXTRA_DIST = support.py $(TESTS) CLEANFILES = secring.gpg pubring.gpg pubring.kbx trustdb.gpg dirmngr.conf \ gpg-agent.conf pubring.kbx~ gpg.conf pubring.gpg~ \ @@ -73,7 +72,7 @@ check-local: ./gpg.conf ./gpg-agent.conf ./pubring-stamp \ # To guarantee that check-local is run before any tests we # add this dependency: -$(top_srcdir)/tests/gpg/initial.test: check-local +initial.py: check-local ./private-keys-v1.d/gpg-sample.stamp: $(private_keys) test -d ./private-keys-v1.d || mkdir ./private-keys-v1.d |