diff options
author | Werner Koch <[email protected]> | 2017-08-08 15:28:25 +0000 |
---|---|---|
committer | Werner Koch <[email protected]> | 2017-08-08 15:49:53 +0000 |
commit | fb21aa8b50367e2afa13bad73fc21d6f01a97e18 (patch) | |
tree | a448e1a6ef0523166568858669e0e6bb866670a6 /tests/openpgp/all-tests.scm | |
parent | gpgscm: Make the test summary stand out (diff) | |
download | gnupg-fb21aa8b50367e2afa13bad73fc21d6f01a97e18.tar.gz gnupg-fb21aa8b50367e2afa13bad73fc21d6f01a97e18.zip |
build: New configure option --enable-all-tests.
* configure.ac: New option --enable-all-tests.
* tests/gpgscm/ffi.c (ffi_init): New gloabl var *run-all-tests*.
* tests/openpgp/all-tests.scm (all-tests): Use that var instead
of *maintainer-mode*.
* Makefile.am (AM_DISTCHECK_CONFIGURE_FLAGS): Add --enable-all-tests.
--
It is better to have a separate option to run all tests than to put
this on top of --enable-maintainer-mode. This way we can also make
sure to run all tests during "make distcheck".
Signed-off-by: Werner Koch <[email protected]>
Diffstat (limited to '')
-rw-r--r-- | tests/openpgp/all-tests.scm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/openpgp/all-tests.scm b/tests/openpgp/all-tests.scm index e65d52730..d687fe49b 100644 --- a/tests/openpgp/all-tests.scm +++ b/tests/openpgp/all-tests.scm @@ -58,7 +58,7 @@ (path-join "tests" "openpgp" name) (in-srcdir "tests" "openpgp" name))) all-tests)) - (when *maintainer-mode* + (when *run-all-tests* (set! tests (append tests |