diff options
author | Justus Winter <[email protected]> | 2017-03-28 14:32:09 +0000 |
---|---|---|
committer | Justus Winter <[email protected]> | 2017-03-28 15:59:47 +0000 |
commit | 7e9f7752c992f957ccfde3b274865c633096e3bb (patch) | |
tree | e375437e2d6c563276208ca0909f2046f7c5489b /tests | |
parent | tests: Make error message more helpful. (diff) | |
download | gpgme-7e9f7752c992f957ccfde3b274865c633096e3bb.tar.gz gpgme-7e9f7752c992f957ccfde3b274865c633096e3bb.zip |
tests: Run the threading tests only on UNIX.
* tests/gpg/Makefile.am (tests_unix): Add 't-thread-keylist' and
't-thread-keylist-verify'.
(c_tests): Drop them here.
--
The tests use pthreads and we suspect problems with MinGW's wrappers.
Signed-off-by: Justus Winter <[email protected]>
Diffstat (limited to 'tests')
-rw-r--r-- | tests/gpg/Makefile.am | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/tests/gpg/Makefile.am b/tests/gpg/Makefile.am index 8e26a92f..9b74ba65 100644 --- a/tests/gpg/Makefile.am +++ b/tests/gpg/Makefile.am @@ -31,15 +31,15 @@ noinst_HEADERS = t-support.h if HAVE_W32_SYSTEM tests_unix = else -tests_unix = t-eventloop t-thread1 +tests_unix = t-eventloop t-thread1 t-thread-keylist t-thread-keylist-verify endif c_tests = \ t-encrypt t-encrypt-sym t-encrypt-sign t-sign t-signers \ t-decrypt t-verify t-decrypt-verify t-sig-notation t-export \ t-import t-trustlist t-edit t-keylist t-keylist-sig t-wait \ - t-encrypt-large t-file-name t-gpgconf t-encrypt-mixed $(tests_unix) \ - t-thread-keylist t-thread-keylist-verify + t-encrypt-large t-file-name t-gpgconf t-encrypt-mixed \ + $(tests_unix) TESTS = initial.test $(c_tests) final.test |