diff options
author | Christian Grothoff <christian@grothoff.org> | 2019-04-03 15:49:30 +0200 |
---|---|---|
committer | Christian Grothoff <christian@grothoff.org> | 2019-04-03 15:49:30 +0200 |
commit | a045962087fe78566bb1aa84693071df857a5d9c (patch) | |
tree | 374e8414f2766f025f552d11727f84c1d8221f4f | |
parent | cb4deed6e0fdac69dc2f4f40d7af75ac433dec59 (diff) |
only run malicious tests if malicious features are enabledv0.11.1
-rw-r--r-- | src/rps/Makefile.am | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/src/rps/Makefile.am b/src/rps/Makefile.am index b391eb8ae..1fffe6be0 100644 --- a/src/rps/Makefile.am +++ b/src/rps/Makefile.am @@ -87,11 +87,14 @@ check_PROGRAMS = \ test_rps_sub \ test_rps_seed_request \ test_rps_seed_big \ - test_rps_churn \ + test_rps_churn +if ENABLE_MALICIOUS +check_PROGRAMS += \ test_rps_malicious_1 \ test_rps_malicious_2 \ test_rps_malicious_3 endif +endif rps_test_src = \ test_rps.c \ |