aboutsummaryrefslogtreecommitdiff
path: root/src/reclaim/Makefile.am
diff options
context:
space:
mode:
Diffstat (limited to 'src/reclaim/Makefile.am')
-rw-r--r--src/reclaim/Makefile.am12
1 files changed, 10 insertions, 2 deletions
diff --git a/src/reclaim/Makefile.am b/src/reclaim/Makefile.am
index 7b73f35f2..912f4a92f 100644
--- a/src/reclaim/Makefile.am
+++ b/src/reclaim/Makefile.am
@@ -206,6 +206,11 @@ test_w3c_ed25519_2020_SOURCES = \
206test_w3c_ed25519_2020_LDADD = \ 206test_w3c_ed25519_2020_LDADD = \
207 $(top_builddir)/src/util/libgnunetutil.la 207 $(top_builddir)/src/util/libgnunetutil.la
208 208
209test_did_helper_SOURCES = \
210 test_did_helper.c
211test_did_helper_LDADD = \
212 $(top_builddir)/src/util/libgnunetutil.la
213
209check_SCRIPTS = \ 214check_SCRIPTS = \
210 test_reclaim_attribute.sh \ 215 test_reclaim_attribute.sh \
211 test_reclaim_issue.sh \ 216 test_reclaim_issue.sh \
@@ -213,9 +218,12 @@ check_SCRIPTS = \
213 218
214check_PROGRAMS = \ 219check_PROGRAMS = \
215 test_reclaim_attribute \ 220 test_reclaim_attribute \
216 test_w3c_ed25519_2020 221 test_w3c_ed25519_2020 \
222 test_did_helper
217 223
218if ENABLE_TEST_RUN 224if ENABLE_TEST_RUN
219 AM_TESTS_ENVIRONMENT=export GNUNET_PREFIX=$${GNUNET_PREFIX:-@libdir@};export PATH=$${GNUNET_PREFIX:-@prefix@}/bin:$$PATH;unset XDG_DATA_HOME;unset XDG_CONFIG_HOME; 225 AM_TESTS_ENVIRONMENT=export GNUNET_PREFIX=$${GNUNET_PREFIX:-@libdir@};export PATH=$${GNUNET_PREFIX:-@prefix@}/bin:$$PATH;unset XDG_DATA_HOME;unset XDG_CONFIG_HOME;
220 TESTS = $(check_SCRIPTS) 226 TESTS = \
227 $(check_SCRIPTS) \
228 $(check_PROGRAMS)
221endif 229endif