[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[GNUnet-SVN] [taler-merchant] branch master updated: put twister tests b
From: |
gnunet |
Subject: |
[GNUnet-SVN] [taler-merchant] branch master updated: put twister tests behind --enable-experimental |
Date: |
Fri, 06 Apr 2018 00:32:16 +0200 |
This is an automated email from the git hooks/post-receive script.
dold pushed a commit to branch master
in repository merchant.
The following commit(s) were added to refs/heads/master by this push:
new d880b37 put twister tests behind --enable-experimental
d880b37 is described below
commit d880b374d01a031f8354bbaab3036544629b87ab
Author: Florian Dold <address@hidden>
AuthorDate: Fri Apr 6 00:32:00 2018 +0200
put twister tests behind --enable-experimental
---
configure.ac | 10 ++++++++++
src/lib/Makefile.am | 2 ++
2 files changed, 12 insertions(+)
diff --git a/configure.ac b/configure.ac
index 9cc5436..fc046d8 100644
--- a/configure.ac
+++ b/configure.ac
@@ -316,6 +316,16 @@ AM_CONDITIONAL([HAVE_TWISTER], [true])
fi
+# should experimental code be compiled (code that may not yet compile / have
passing test cases)?
+AC_MSG_CHECKING(whether to compile experimental code)
+AC_ARG_ENABLE([experimental],
+ [AS_HELP_STRING([--enable-experimental], [enable compiling experimental
code])],
+ [enable_experimental=${enableval}],
+ [enable_experimental=no])
+AC_MSG_RESULT($enable_experimental)
+AM_CONDITIONAL([HAVE_EXPERIMENTAL], [test "x$enable_experimental" = "xyes"])
+
+
AC_CONFIG_FILES([Makefile
doc/Makefile
src/Makefile
diff --git a/src/lib/Makefile.am b/src/lib/Makefile.am
index 9235863..1189abe 100644
--- a/src/lib/Makefile.am
+++ b/src/lib/Makefile.am
@@ -78,9 +78,11 @@ check_PROGRAMS = \
test_merchant_api_new \
test_merchant_api
+if HAVE_EXPERIMENTAL
if HAVE_TWISTER
check_PROGRAMS += test_merchant_api_twisted
endif
+endif
endif
--
To stop receiving notification emails like this one, please contact
address@hidden
[Prev in Thread] |
Current Thread |
[Next in Thread] |
- [GNUnet-SVN] [taler-merchant] branch master updated: put twister tests behind --enable-experimental,
gnunet <=