diff options
author | fanquake <fanquake@gmail.com> | 2020-04-03 14:58:51 +0800 |
---|---|---|
committer | fanquake <fanquake@gmail.com> | 2020-04-03 22:47:59 +0800 |
commit | 9e071b00898aedd9632f105a22d976dc6dbc84b1 (patch) | |
tree | dcd9fe18d5f554c5e794776da085f52fd91d1b57 /src/Makefile.test.include | |
parent | 08c4994969be20ab268faed2793fb4b9f17722ee (diff) |
test: remove rapidcheck integration and tests
Diffstat (limited to 'src/Makefile.test.include')
-rw-r--r-- | src/Makefile.test.include | 11 |
1 files changed, 1 insertions, 10 deletions
diff --git a/src/Makefile.test.include b/src/Makefile.test.include index 93c5973a21..f49c5e838c 100644 --- a/src/Makefile.test.include +++ b/src/Makefile.test.include @@ -245,15 +245,6 @@ BITCOIN_TESTS =\ test/validation_flush_tests.cpp \ test/versionbits_tests.cpp -if ENABLE_PROPERTY_TESTS -BITCOIN_TESTS += \ - test/key_properties.cpp - -BITCOIN_TEST_SUITE += \ - test/gen/crypto_gen.cpp \ - test/gen/crypto_gen.h -endif - if ENABLE_WALLET BITCOIN_TESTS += \ wallet/test/db_tests.cpp \ @@ -283,7 +274,7 @@ test_test_bitcoin_LDADD += $(LIBBITCOIN_SERVER) $(LIBBITCOIN_CLI) $(LIBBITCOIN_C $(LIBLEVELDB) $(LIBLEVELDB_SSE42) $(LIBMEMENV) $(BOOST_LIBS) $(BOOST_UNIT_TEST_FRAMEWORK_LIB) $(LIBSECP256K1) $(EVENT_LIBS) $(EVENT_PTHREADS_LIBS) test_test_bitcoin_CXXFLAGS = $(AM_CXXFLAGS) $(PIE_FLAGS) -test_test_bitcoin_LDADD += $(BDB_LIBS) $(MINIUPNPC_LIBS) $(RAPIDCHECK_LIBS) +test_test_bitcoin_LDADD += $(BDB_LIBS) $(MINIUPNPC_LIBS) test_test_bitcoin_LDFLAGS = $(RELDFLAGS) $(AM_LDFLAGS) $(LIBTOOL_APP_LDFLAGS) -static if ENABLE_ZMQ |