diff options
author | Justus Winter <[email protected]> | 2016-05-23 13:42:14 +0000 |
---|---|---|
committer | Justus Winter <[email protected]> | 2016-05-23 13:43:55 +0000 |
commit | a42d814a65fdc29a3be6efa97433997495696a88 (patch) | |
tree | 52a51d93aa6ca2391982c4491db10f9febcdd7a3 /lang/python/tests/Makefile.am | |
parent | python: Translate list of strings. (diff) | |
download | gpgme-a42d814a65fdc29a3be6efa97433997495696a88.tar.gz gpgme-a42d814a65fdc29a3be6efa97433997495696a88.zip |
python: Port more tests.
* lang/python/tests/Makefile.am (TESTS_ENVIRONMENT): Set
LD_LIBRARY_PATH.
(pytests): Add new tests.
* lang/python/tests/t-callbacks.py: Trim imports.
* lang/python/tests/t-encrypt-sign.py: New file.
* lang/python/tests/t-export.py: Likewise.
* lang/python/tests/t-signers.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 | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/lang/python/tests/Makefile.am b/lang/python/tests/Makefile.am index 30f1aec6..32dc4323 100644 --- a/lang/python/tests/Makefile.am +++ b/lang/python/tests/Makefile.am @@ -26,6 +26,7 @@ test_srcdir = $(top_srcdir)/tests/gpg TESTS_ENVIRONMENT = GNUPGHOME=$(abs_builddir) \ LC_ALL=C GPG_AGENT_INFO= \ top_srcdir=$(top_srcdir) \ + LD_LIBRARY_PATH="../../../src/.libs" \ PYTHONPATH=`echo $(abs_builddir)/../build/lib.*` py_tests = t-wrapper.py \ @@ -33,8 +34,11 @@ py_tests = t-wrapper.py \ t-data.py \ t-encrypt.py \ t-encrypt-sym.py \ + t-encrypt-sign.py \ t-sign.py \ - t-decrypt.py + t-signers.py \ + t-decrypt.py \ + t-export.py TESTS = $(top_srcdir)/tests/gpg/initial.test \ $(py_tests) \ |