-fixed inline docu
[oweals/gnunet.git] / src / rps / Makefile.am
index fe086e59c73198abce504a520261d10e7b3fbd75..b1fd3d47b841e0dacf49007590c3eb88038d0e50 100644 (file)
@@ -40,26 +40,38 @@ libgnunetrps_la_LDFLAGS = \
 libexec_PROGRAMS = \
  gnunet-service-rps
 
+if HAVE_TESTING
+noinst_PROGRAMS = \
+ gnunet-rps-profiler
+endif
+
 
 gnunet_service_rps_SOURCES = \
  gnunet-service-rps_sampler.h gnunet-service-rps_sampler.c \
+ rps-test_util.h rps-test_util.c \
  gnunet-service-rps.c
 
 
 gnunet_service_rps_LDADD = \
   libgnunetrps.la \
   $(top_builddir)/src/util/libgnunetutil.la \
+  $(top_builddir)/src/peerinfo/libgnunetpeerinfo.la \
   $(top_builddir)/src/cadet/libgnunetcadet.la \
+  $(top_builddir)/src/peerinfo/libgnunetpeerinfo.la \
   $(top_builddir)/src/nse/libgnunetnse.la \
   $(top_builddir)/src/statistics/libgnunetstatistics.la \
   $(LIBGCRYPT_LIBS) \
   -lm -lgcrypt \
   $(GN_LIBINTL)
 
+
 if HAVE_TESTING
 check_PROGRAMS = \
- test_rps_multipeer \
- test_rps_malicious_1
+ test_rps_malicious_1 \
+ test_rps_malicious_2 \
+ test_rps_malicious_3 \
+ test_rps_seed_request \
+ test_rps_single_req
 endif
 
 ld_rps_test_lib = \
@@ -74,14 +86,29 @@ AM_TESTS_ENVIRONMENT=export GNUNET_PREFIX=$${GNUNET_PREFIX:-@libdir@};export PAT
 TESTS = $(check_PROGRAMS)
 endif
 
-test_rps_multipeer_SOURCES = \
- test_rps_multipeer.c
-test_rps_multipeer_LDADD = $(ld_rps_test_lib)
-
 test_rps_malicious_1_SOURCES = \
-       test_rps_malicious_1.c
+       test_rps.c
 test_rps_malicious_1_LDADD = $(ld_rps_test_lib)
 
+test_rps_malicious_2_SOURCES = \
+       test_rps.c
+test_rps_malicious_2_LDADD = $(ld_rps_test_lib)
+
+test_rps_malicious_3_SOURCES = \
+       test_rps.c
+test_rps_malicious_3_LDADD = $(ld_rps_test_lib)
+
+test_rps_single_req_SOURCES = \
+ test_rps.c
+test_rps_single_req_LDADD = $(ld_rps_test_lib)
+
+test_rps_seed_request_SOURCES = \
+ test_rps.c
+test_rps_seed_request_LDADD = $(ld_rps_test_lib)
+
+gnunet_rps_profiler_SOURCES = \
+ test_rps.c
+gnunet_rps_profiler_LDADD = $(ld_rps_test_lib)
+
 EXTRA_DIST = \
   test_rps.conf
-