- test and log for bug #0003423
[oweals/gnunet.git] / src / gnsrecord / Makefile.am
index 2fb859f39c3536d1defba2fb5a3c7e5b1b5b3e38..2ac330ae086d2ca34a2aa0e8c36dd8465f38a656 100644 (file)
@@ -15,7 +15,13 @@ if USE_COVERAGE
   XLIBS = -lgcov
 endif
 
+check_PROGRAMS = \
+ test_gnsrecord_crypto \
+ test_gnsrecord_serialization \
+ test_gnsrecord_block_expiration
+
 if ENABLE_TEST_RUN
+AM_TESTS_ENVIRONMENT=export GNUNET_PREFIX=$${GNUNET_PREFIX:-@libdir@};export PATH=$${GNUNET_PREFIX:-@prefix@}/bin:$$PATH;
 TESTS = \
   $(check_PROGRAMS) \
   $(check_SCRIPTS)
@@ -25,7 +31,10 @@ lib_LTLIBRARIES = \
   libgnunetgnsrecord.la
 
 libgnunetgnsrecord_la_SOURCES = \
-  gnsrecord.c
+  gnsrecord.c \
+  gnsrecord_serialization.c \
+  gnsrecord_crypto.c \
+  gnsrecord_misc.c
 libgnunetgnsrecord_la_LIBADD = \
   $(top_builddir)/src/dns/libgnunetdnsparser.la \
   $(top_builddir)/src/util/libgnunetutil.la \
@@ -52,3 +61,26 @@ libgnunet_plugin_gnsrecord_dns_la_LDFLAGS = \
 EXTRA_DIST = \
   $(check_SCRIPTS)
 
+
+test_gnsrecord_serialization_SOURCES = \
+ test_gnsrecord_serialization.c
+test_gnsrecord_serialization_LDADD = \
+  $(top_builddir)/src/testing/libgnunettesting.la \
+  $(top_builddir)/src/gnsrecord/libgnunetgnsrecord.la \
+  $(top_builddir)/src/util/libgnunetutil.la
+
+test_gnsrecord_block_expiration_SOURCES = \
+ test_gnsrecord_block_expiration.c
+test_gnsrecord_block_expiration_LDADD = \
+  $(top_builddir)/src/testing/libgnunettesting.la \
+  $(top_builddir)/src/gnsrecord/libgnunetgnsrecord.la \
+  $(top_builddir)/src/util/libgnunetutil.la
+
+
+test_gnsrecord_crypto_SOURCES = \
+ test_gnsrecord_crypto.c
+test_gnsrecord_crypto_LDADD = \
+  $(top_builddir)/src/testing/libgnunettesting.la \
+  $(top_builddir)/src/gnsrecord/libgnunetgnsrecord.la \
+  $(top_builddir)/src/util/libgnunetutil.la
+