2016-09-21 22:31:23 +00:00
|
|
|
# Copyright (c) 2013-2016 The Bitcoin Core developers
|
|
|
|
# Distributed under the MIT software license, see the accompanying
|
|
|
|
# file COPYING or http://www.opensource.org/licenses/mit-license.php.
|
|
|
|
|
2019-01-25 18:35:36 -05:00
|
|
|
|
|
|
|
FUZZ_TARGETS = \
|
|
|
|
test/fuzz/address_deserialize \
|
|
|
|
test/fuzz/addrman_deserialize \
|
|
|
|
test/fuzz/banentry_deserialize \
|
|
|
|
test/fuzz/block_deserialize \
|
|
|
|
test/fuzz/blockheader_deserialize \
|
|
|
|
test/fuzz/blocklocator_deserialize \
|
|
|
|
test/fuzz/blockmerkleroot \
|
|
|
|
test/fuzz/blocktransactions_deserialize \
|
|
|
|
test/fuzz/blocktransactionsrequest_deserialize \
|
|
|
|
test/fuzz/blockundo_deserialize \
|
|
|
|
test/fuzz/bloomfilter_deserialize \
|
|
|
|
test/fuzz/coins_deserialize \
|
|
|
|
test/fuzz/diskblockindex_deserialize \
|
|
|
|
test/fuzz/inv_deserialize \
|
|
|
|
test/fuzz/messageheader_deserialize \
|
|
|
|
test/fuzz/netaddr_deserialize \
|
2019-02-13 14:25:49 -05:00
|
|
|
test/fuzz/script_flags \
|
2019-01-25 18:35:36 -05:00
|
|
|
test/fuzz/service_deserialize \
|
|
|
|
test/fuzz/transaction_deserialize \
|
|
|
|
test/fuzz/txoutcompressor_deserialize \
|
|
|
|
test/fuzz/txundo_deserialize
|
|
|
|
|
|
|
|
if ENABLE_FUZZ
|
|
|
|
noinst_PROGRAMS += $(FUZZ_TARGETS:=)
|
2019-01-16 11:49:01 -05:00
|
|
|
else
|
|
|
|
bin_PROGRAMS += test/test_bitcoin
|
2019-01-25 18:35:36 -05:00
|
|
|
endif
|
|
|
|
|
2014-05-28 13:38:41 -04:00
|
|
|
TEST_SRCDIR = test
|
|
|
|
TEST_BINARY=test/test_bitcoin$(EXEEXT)
|
|
|
|
|
|
|
|
JSON_TEST_FILES = \
|
2018-03-24 18:37:10 -05:00
|
|
|
test/data/script_tests.json \
|
2014-05-28 13:38:41 -04:00
|
|
|
test/data/base58_encode_decode.json \
|
2018-01-23 17:38:23 -08:00
|
|
|
test/data/blockfilters.json \
|
2017-09-20 16:57:44 -07:00
|
|
|
test/data/key_io_valid.json \
|
|
|
|
test/data/key_io_invalid.json \
|
|
|
|
test/data/script_tests.json \
|
|
|
|
test/data/sighash.json \
|
2014-05-28 13:38:41 -04:00
|
|
|
test/data/tx_invalid.json \
|
2017-09-20 16:57:44 -07:00
|
|
|
test/data/tx_valid.json
|
2014-05-28 13:38:41 -04:00
|
|
|
|
2016-03-07 19:44:09 +00:00
|
|
|
RAW_TEST_FILES =
|
2014-05-28 13:38:41 -04:00
|
|
|
|
|
|
|
GENERATED_TEST_FILES = $(JSON_TEST_FILES:.json=.json.h) $(RAW_TEST_FILES:.raw=.raw.h)
|
|
|
|
|
2018-04-09 19:55:49 -04:00
|
|
|
BITCOIN_TEST_SUITE = \
|
2019-02-28 14:51:11 -05:00
|
|
|
test/main.cpp \
|
2019-04-11 09:44:10 -04:00
|
|
|
test/setup_common.h \
|
|
|
|
test/setup_common.cpp
|
2018-04-09 19:55:49 -04:00
|
|
|
|
2019-01-25 18:35:36 -05:00
|
|
|
FUZZ_SUITE = \
|
2019-04-11 09:44:10 -04:00
|
|
|
test/setup_common.h \
|
|
|
|
test/setup_common.cpp \
|
2019-01-25 18:35:36 -05:00
|
|
|
test/fuzz/fuzz.cpp \
|
|
|
|
test/fuzz/fuzz.h
|
|
|
|
|
2019-02-28 15:04:03 -05:00
|
|
|
FUZZ_SUITE_LD_COMMON = \
|
|
|
|
$(LIBBITCOIN_SERVER) \
|
|
|
|
$(LIBBITCOIN_COMMON) \
|
|
|
|
$(LIBBITCOIN_UTIL) \
|
|
|
|
$(LIBBITCOIN_CONSENSUS) \
|
|
|
|
$(LIBBITCOIN_CRYPTO) \
|
|
|
|
$(LIBUNIVALUE) \
|
|
|
|
$(LIBLEVELDB) \
|
|
|
|
$(LIBLEVELDB_SSE42) \
|
|
|
|
$(BOOST_LIBS) \
|
|
|
|
$(LIBMEMENV) \
|
|
|
|
$(LIBSECP256K1) \
|
|
|
|
$(EVENT_LIBS) \
|
|
|
|
$(CRYPTO_LIBS) \
|
|
|
|
$(EVENT_PTHREADS_LIBS)
|
|
|
|
|
2016-04-22 15:19:33 -07:00
|
|
|
# test_bitcoin binary #
|
2014-05-28 13:38:41 -04:00
|
|
|
BITCOIN_TESTS =\
|
2014-12-15 10:22:19 +01:00
|
|
|
test/arith_uint256_tests.cpp \
|
2015-11-25 13:19:48 +01:00
|
|
|
test/scriptnum10.h \
|
2015-09-22 15:24:16 -04:00
|
|
|
test/addrman_tests.cpp \
|
2016-03-17 16:47:15 +01:00
|
|
|
test/amount_tests.cpp \
|
2014-05-28 13:38:41 -04:00
|
|
|
test/allocator_tests.cpp \
|
|
|
|
test/base32_tests.cpp \
|
|
|
|
test/base58_tests.cpp \
|
|
|
|
test/base64_tests.cpp \
|
2017-08-25 18:12:39 -07:00
|
|
|
test/bech32_tests.cpp \
|
2015-04-23 13:20:18 +02:00
|
|
|
test/bip32_tests.cpp \
|
[Tests] Adding unit tests for GetDifficulty in blockchain.cpp.
blockchain.cpp has low unit test coverage. This commit is intended
to start improving its code coverage to reasonable levels. One or more
follow up commits will complete the task that this commit is starting
(though the usefulness of this commit is not dependent upon later
commits).
Note that these tests were not written based upon a specification of how
GetDifficulty *should* work, but rather how it actually *does* work. As
a result, if there are any bugs in the current GetDifficulty
implementation, these unit tests serve to lock them in rather than
expose them.
-- Why has blockchain.cpp been modified if this is a unit testing change?
Since the existing GetDifficulty function relies on a global variable,
chainActive, it was not suitable for unit testing purposes. Both the
existing GetDifficulty function and the unit tests now call through to
a new, more modular version of GetDifficulty that can work on any chain,
not just chainActive.
-- Why does blockchain_tests.cpp directly include blockchain.cpp instead
of blockchain.h?
While the new GetDifficulty function's signature is arguably better than
the old one's, it still isn't great, and doesn't seem to warrant inclusion
as part of the blockchain.h API, especially since only test code is
directly using it. If a better way of exposing the new GetDifficulty
function to unit tests exists, please mention it and the commit will be
updated accordingly.
-- Why is the test fixture named blockchain_difficulty_tests rather than
blockchain_tests?
The Bitcoin Core policy for naming unit test files is to match the the
file under test ("blockchain" becomes "blockchain_tests"). While this
commit complies with that, blockchain.cpp is a massive file, such that
having all of the unit tests in one file will tend towards disorder.
Since there will be a lot more tests added to this file, the intention
is to divide up different types of tests into different test fixtures
within the same file.
2017-11-21 15:40:02 -08:00
|
|
|
test/blockchain_tests.cpp \
|
2016-04-25 15:51:08 -07:00
|
|
|
test/blockencodings_tests.cpp \
|
2018-01-23 17:13:04 -08:00
|
|
|
test/blockfilter_tests.cpp \
|
2018-08-27 18:44:43 -07:00
|
|
|
test/blockfilter_index_tests.cpp \
|
2014-05-28 13:38:41 -04:00
|
|
|
test/bloom_tests.cpp \
|
2016-12-16 16:52:35 +09:00
|
|
|
test/bswap_tests.cpp \
|
2017-01-07 19:51:23 -05:00
|
|
|
test/checkqueue_tests.cpp \
|
2014-09-17 01:27:06 +02:00
|
|
|
test/coins_tests.cpp \
|
2019-05-08 13:29:44 -07:00
|
|
|
test/compilerbug_tests.cpp \
|
2014-10-31 09:36:30 +01:00
|
|
|
test/compress_tests.cpp \
|
2014-05-31 22:01:42 +02:00
|
|
|
test/crypto_tests.cpp \
|
2016-10-05 16:59:18 -04:00
|
|
|
test/cuckoocache_tests.cpp \
|
2018-05-23 14:14:58 +02:00
|
|
|
test/denialofservice_tests.cpp \
|
2018-07-15 19:32:09 -07:00
|
|
|
test/descriptor_tests.cpp \
|
2019-01-06 22:23:34 -08:00
|
|
|
test/flatfile_tests.cpp \
|
2018-09-07 21:12:24 +08:00
|
|
|
test/fs_tests.cpp \
|
2014-05-28 13:38:41 -04:00
|
|
|
test/getarg_tests.cpp \
|
2014-04-20 17:36:25 +02:00
|
|
|
test/hash_tests.cpp \
|
2017-09-20 16:57:44 -07:00
|
|
|
test/key_io_tests.cpp \
|
2014-05-28 13:38:41 -04:00
|
|
|
test/key_tests.cpp \
|
2015-08-17 12:07:47 -04:00
|
|
|
test/limitedmap_tests.cpp \
|
2015-10-22 21:33:06 -04:00
|
|
|
test/dbwrapper_tests.cpp \
|
2019-02-28 15:02:35 -05:00
|
|
|
test/validation_tests.cpp \
|
2015-03-25 13:13:09 -04:00
|
|
|
test/mempool_tests.cpp \
|
2015-11-17 17:35:44 +01:00
|
|
|
test/merkle_tests.cpp \
|
2017-09-11 17:43:48 -07:00
|
|
|
test/merkleblock_tests.cpp \
|
2014-05-28 13:38:41 -04:00
|
|
|
test/miner_tests.cpp \
|
|
|
|
test/multisig_tests.cpp \
|
2016-03-16 12:54:30 -04:00
|
|
|
test/net_tests.cpp \
|
2014-05-28 13:38:41 -04:00
|
|
|
test/netbase_tests.cpp \
|
|
|
|
test/pmt_tests.cpp \
|
2014-08-26 16:28:32 -04:00
|
|
|
test/policyestimator_tests.cpp \
|
2015-02-21 12:57:44 +00:00
|
|
|
test/pow_tests.cpp \
|
2015-10-29 07:11:24 +01:00
|
|
|
test/prevector_tests.cpp \
|
2016-12-21 13:43:49 +09:00
|
|
|
test/raii_event_tests.cpp \
|
2017-02-15 17:45:22 -08:00
|
|
|
test/random_tests.cpp \
|
2015-09-03 12:53:00 -04:00
|
|
|
test/reverselock_tests.cpp \
|
2014-05-28 13:38:41 -04:00
|
|
|
test/rpc_tests.cpp \
|
2015-01-05 21:39:40 -05:00
|
|
|
test/sanity_tests.cpp \
|
2015-04-10 10:31:02 -04:00
|
|
|
test/scheduler_tests.cpp \
|
2018-05-23 14:14:58 +02:00
|
|
|
test/script_p2sh_tests.cpp \
|
2014-05-28 13:38:41 -04:00
|
|
|
test/script_tests.cpp \
|
2017-08-18 14:40:29 -07:00
|
|
|
test/script_standard_tests.cpp \
|
2014-10-31 09:36:30 +01:00
|
|
|
test/scriptnum_tests.cpp \
|
2014-05-28 13:38:41 -04:00
|
|
|
test/serialize_tests.cpp \
|
2014-10-31 09:36:30 +01:00
|
|
|
test/sighash_tests.cpp \
|
2014-05-28 13:38:41 -04:00
|
|
|
test/sigopcount_tests.cpp \
|
2014-06-29 15:26:58 +02:00
|
|
|
test/skiplist_tests.cpp \
|
2015-09-07 15:22:23 -07:00
|
|
|
test/streams_tests.cpp \
|
2017-11-08 15:28:35 -05:00
|
|
|
test/sync_tests.cpp \
|
2018-05-05 14:11:46 -04:00
|
|
|
test/util_threadnames_tests.cpp \
|
2014-08-20 13:53:42 +02:00
|
|
|
test/timedata_tests.cpp \
|
2017-03-25 20:17:37 +13:00
|
|
|
test/torcontrol_tests.cpp \
|
2014-05-28 13:38:41 -04:00
|
|
|
test/transaction_tests.cpp \
|
2017-12-08 12:00:13 -08:00
|
|
|
test/txindex_tests.cpp \
|
2017-11-18 00:48:34 -08:00
|
|
|
test/txvalidation_tests.cpp \
|
2015-03-03 09:59:32 -05:00
|
|
|
test/txvalidationcache_tests.cpp \
|
2014-12-16 15:50:31 +01:00
|
|
|
test/uint256_tests.cpp \
|
2018-04-18 08:01:48 -04:00
|
|
|
test/util_tests.cpp \
|
|
|
|
test/validation_block_tests.cpp \
|
|
|
|
test/versionbits_tests.cpp
|
2014-05-28 13:38:41 -04:00
|
|
|
|
2018-03-24 18:37:10 -05:00
|
|
|
if ENABLE_PROPERTY_TESTS
|
|
|
|
BITCOIN_TESTS += \
|
|
|
|
test/key_properties.cpp
|
|
|
|
|
|
|
|
BITCOIN_TEST_SUITE += \
|
|
|
|
test/gen/crypto_gen.cpp \
|
|
|
|
test/gen/crypto_gen.h
|
|
|
|
endif
|
|
|
|
|
2014-05-28 13:38:41 -04:00
|
|
|
if ENABLE_WALLET
|
|
|
|
BITCOIN_TESTS += \
|
2018-09-14 21:10:20 -04:00
|
|
|
wallet/test/db_tests.cpp \
|
2018-06-27 17:05:54 -07:00
|
|
|
wallet/test/psbt_wallet_tests.cpp \
|
2015-02-03 21:09:47 +01:00
|
|
|
wallet/test/wallet_tests.cpp \
|
2018-04-05 16:00:39 -04:00
|
|
|
wallet/test/wallet_crypto_tests.cpp \
|
2018-09-10 20:49:17 -04:00
|
|
|
wallet/test/coinselector_tests.cpp \
|
2019-06-06 09:53:16 +02:00
|
|
|
wallet/test/init_tests.cpp \
|
|
|
|
wallet/test/ismine_tests.cpp
|
2018-04-09 19:55:49 -04:00
|
|
|
|
|
|
|
BITCOIN_TEST_SUITE += \
|
|
|
|
wallet/test/wallet_test_fixture.cpp \
|
2018-09-10 20:49:17 -04:00
|
|
|
wallet/test/wallet_test_fixture.h \
|
|
|
|
wallet/test/init_test_fixture.cpp \
|
|
|
|
wallet/test/init_test_fixture.h
|
2014-05-28 13:38:41 -04:00
|
|
|
endif
|
|
|
|
|
2018-04-09 19:55:49 -04:00
|
|
|
test_test_bitcoin_SOURCES = $(BITCOIN_TEST_SUITE) $(BITCOIN_TESTS) $(JSON_TEST_FILES) $(RAW_TEST_FILES)
|
2017-08-15 16:40:30 +02:00
|
|
|
test_test_bitcoin_CPPFLAGS = $(AM_CPPFLAGS) $(BITCOIN_INCLUDES) $(TESTDEFS) $(EVENT_CFLAGS)
|
2017-07-07 16:03:24 +02:00
|
|
|
test_test_bitcoin_LDADD =
|
2014-05-28 13:38:41 -04:00
|
|
|
if ENABLE_WALLET
|
|
|
|
test_test_bitcoin_LDADD += $(LIBBITCOIN_WALLET)
|
|
|
|
endif
|
2018-05-08 10:27:57 -07:00
|
|
|
|
2018-06-06 15:20:34 -04:00
|
|
|
test_test_bitcoin_LDADD += $(LIBBITCOIN_SERVER) $(LIBBITCOIN_CLI) $(LIBBITCOIN_COMMON) $(LIBBITCOIN_UTIL) $(LIBBITCOIN_CONSENSUS) $(LIBBITCOIN_CRYPTO) $(LIBUNIVALUE) \
|
2017-07-07 16:03:24 +02:00
|
|
|
$(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)
|
2014-06-06 10:57:28 -04:00
|
|
|
|
2018-11-29 05:30:58 -06:00
|
|
|
test_test_bitcoin_LDADD += $(BDB_LIBS) $(CRYPTO_LIBS) $(MINIUPNPC_LIBS) $(RAPIDCHECK_LIBS)
|
2014-11-20 13:40:01 -05:00
|
|
|
test_test_bitcoin_LDFLAGS = $(RELDFLAGS) $(AM_LDFLAGS) $(LIBTOOL_APP_LDFLAGS) -static
|
2014-05-28 13:38:41 -04:00
|
|
|
|
2014-11-18 12:06:32 -05:00
|
|
|
if ENABLE_ZMQ
|
2019-02-28 15:45:26 -05:00
|
|
|
test_test_bitcoin_LDADD += $(LIBBITCOIN_ZMQ) $(ZMQ_LIBS)
|
2014-11-18 12:06:32 -05:00
|
|
|
endif
|
2019-01-25 18:35:36 -05:00
|
|
|
|
|
|
|
if ENABLE_FUZZ
|
2019-02-13 11:49:00 -05:00
|
|
|
test_fuzz_block_deserialize_SOURCES = $(FUZZ_SUITE) test/fuzz/deserialize.cpp
|
2019-01-25 18:35:36 -05:00
|
|
|
test_fuzz_block_deserialize_CPPFLAGS = $(AM_CPPFLAGS) $(BITCOIN_INCLUDES) -DBLOCK_DESERIALIZE=1
|
|
|
|
test_fuzz_block_deserialize_CXXFLAGS = $(AM_CXXFLAGS) $(PIE_FLAGS)
|
|
|
|
test_fuzz_block_deserialize_LDFLAGS = $(RELDFLAGS) $(AM_LDFLAGS) $(LIBTOOL_APP_LDFLAGS)
|
2019-02-28 15:04:03 -05:00
|
|
|
test_fuzz_block_deserialize_LDADD = $(FUZZ_SUITE_LD_COMMON)
|
2019-01-25 18:35:36 -05:00
|
|
|
|
2019-02-13 11:49:00 -05:00
|
|
|
test_fuzz_transaction_deserialize_SOURCES = $(FUZZ_SUITE) test/fuzz/deserialize.cpp
|
2019-01-25 18:35:36 -05:00
|
|
|
test_fuzz_transaction_deserialize_CPPFLAGS = $(AM_CPPFLAGS) $(BITCOIN_INCLUDES) -DTRANSACTION_DESERIALIZE=1
|
|
|
|
test_fuzz_transaction_deserialize_CXXFLAGS = $(AM_CXXFLAGS) $(PIE_FLAGS)
|
|
|
|
test_fuzz_transaction_deserialize_LDFLAGS = $(RELDFLAGS) $(AM_LDFLAGS) $(LIBTOOL_APP_LDFLAGS)
|
2019-02-28 15:04:03 -05:00
|
|
|
test_fuzz_transaction_deserialize_LDADD = $(FUZZ_SUITE_LD_COMMON)
|
2019-01-25 18:35:36 -05:00
|
|
|
|
2019-02-13 11:49:00 -05:00
|
|
|
test_fuzz_blocklocator_deserialize_SOURCES = $(FUZZ_SUITE) test/fuzz/deserialize.cpp
|
2019-01-25 18:35:36 -05:00
|
|
|
test_fuzz_blocklocator_deserialize_CPPFLAGS = $(AM_CPPFLAGS) $(BITCOIN_INCLUDES) -DBLOCKLOCATOR_DESERIALIZE=1
|
|
|
|
test_fuzz_blocklocator_deserialize_CXXFLAGS = $(AM_CXXFLAGS) $(PIE_FLAGS)
|
|
|
|
test_fuzz_blocklocator_deserialize_LDFLAGS = $(RELDFLAGS) $(AM_LDFLAGS) $(LIBTOOL_APP_LDFLAGS)
|
2019-02-28 15:04:03 -05:00
|
|
|
test_fuzz_blocklocator_deserialize_LDADD = $(FUZZ_SUITE_LD_COMMON)
|
2019-01-25 18:35:36 -05:00
|
|
|
|
2019-02-13 11:49:00 -05:00
|
|
|
test_fuzz_blockmerkleroot_SOURCES = $(FUZZ_SUITE) test/fuzz/deserialize.cpp
|
2019-01-25 18:35:36 -05:00
|
|
|
test_fuzz_blockmerkleroot_CPPFLAGS = $(AM_CPPFLAGS) $(BITCOIN_INCLUDES) -DBLOCKMERKLEROOT=1
|
|
|
|
test_fuzz_blockmerkleroot_CXXFLAGS = $(AM_CXXFLAGS) $(PIE_FLAGS)
|
|
|
|
test_fuzz_blockmerkleroot_LDFLAGS = $(RELDFLAGS) $(AM_LDFLAGS) $(LIBTOOL_APP_LDFLAGS)
|
2019-02-28 15:04:03 -05:00
|
|
|
test_fuzz_blockmerkleroot_LDADD = $(FUZZ_SUITE_LD_COMMON)
|
2019-01-25 18:35:36 -05:00
|
|
|
|
2019-02-13 11:49:00 -05:00
|
|
|
test_fuzz_addrman_deserialize_SOURCES = $(FUZZ_SUITE) test/fuzz/deserialize.cpp
|
2019-01-25 18:35:36 -05:00
|
|
|
test_fuzz_addrman_deserialize_CPPFLAGS = $(AM_CPPFLAGS) $(BITCOIN_INCLUDES) -DADDRMAN_DESERIALIZE=1
|
|
|
|
test_fuzz_addrman_deserialize_CXXFLAGS = $(AM_CXXFLAGS) $(PIE_FLAGS)
|
|
|
|
test_fuzz_addrman_deserialize_LDFLAGS = $(RELDFLAGS) $(AM_LDFLAGS) $(LIBTOOL_APP_LDFLAGS)
|
2019-02-28 15:04:03 -05:00
|
|
|
test_fuzz_addrman_deserialize_LDADD = $(FUZZ_SUITE_LD_COMMON)
|
2019-01-25 18:35:36 -05:00
|
|
|
|
2019-02-13 11:49:00 -05:00
|
|
|
test_fuzz_blockheader_deserialize_SOURCES = $(FUZZ_SUITE) test/fuzz/deserialize.cpp
|
2019-01-25 18:35:36 -05:00
|
|
|
test_fuzz_blockheader_deserialize_CPPFLAGS = $(AM_CPPFLAGS) $(BITCOIN_INCLUDES) -DBLOCKHEADER_DESERIALIZE=1
|
|
|
|
test_fuzz_blockheader_deserialize_CXXFLAGS = $(AM_CXXFLAGS) $(PIE_FLAGS)
|
|
|
|
test_fuzz_blockheader_deserialize_LDFLAGS = $(RELDFLAGS) $(AM_LDFLAGS) $(LIBTOOL_APP_LDFLAGS)
|
2019-02-28 15:04:03 -05:00
|
|
|
test_fuzz_blockheader_deserialize_LDADD = $(FUZZ_SUITE_LD_COMMON)
|
2019-01-25 18:35:36 -05:00
|
|
|
|
2019-02-13 11:49:00 -05:00
|
|
|
test_fuzz_banentry_deserialize_SOURCES = $(FUZZ_SUITE) test/fuzz/deserialize.cpp
|
2019-01-25 18:35:36 -05:00
|
|
|
test_fuzz_banentry_deserialize_CPPFLAGS = $(AM_CPPFLAGS) $(BITCOIN_INCLUDES) -DBANENTRY_DESERIALIZE=1
|
|
|
|
test_fuzz_banentry_deserialize_CXXFLAGS = $(AM_CXXFLAGS) $(PIE_FLAGS)
|
|
|
|
test_fuzz_banentry_deserialize_LDFLAGS = $(RELDFLAGS) $(AM_LDFLAGS) $(LIBTOOL_APP_LDFLAGS)
|
2019-02-28 15:04:03 -05:00
|
|
|
test_fuzz_banentry_deserialize_LDADD = $(FUZZ_SUITE_LD_COMMON)
|
2019-01-25 18:35:36 -05:00
|
|
|
|
2019-02-13 11:49:00 -05:00
|
|
|
test_fuzz_txundo_deserialize_SOURCES = $(FUZZ_SUITE) test/fuzz/deserialize.cpp
|
2019-01-25 18:35:36 -05:00
|
|
|
test_fuzz_txundo_deserialize_CPPFLAGS = $(AM_CPPFLAGS) $(BITCOIN_INCLUDES) -DTXUNDO_DESERIALIZE=1
|
|
|
|
test_fuzz_txundo_deserialize_CXXFLAGS = $(AM_CXXFLAGS) $(PIE_FLAGS)
|
|
|
|
test_fuzz_txundo_deserialize_LDFLAGS = $(RELDFLAGS) $(AM_LDFLAGS) $(LIBTOOL_APP_LDFLAGS)
|
2019-02-28 15:04:03 -05:00
|
|
|
test_fuzz_txundo_deserialize_LDADD = $(FUZZ_SUITE_LD_COMMON)
|
2019-01-25 18:35:36 -05:00
|
|
|
|
2019-02-13 11:49:00 -05:00
|
|
|
test_fuzz_blockundo_deserialize_SOURCES = $(FUZZ_SUITE) test/fuzz/deserialize.cpp
|
2019-01-25 18:35:36 -05:00
|
|
|
test_fuzz_blockundo_deserialize_CPPFLAGS = $(AM_CPPFLAGS) $(BITCOIN_INCLUDES) -DBLOCKUNDO_DESERIALIZE=1
|
|
|
|
test_fuzz_blockundo_deserialize_CXXFLAGS = $(AM_CXXFLAGS) $(PIE_FLAGS)
|
|
|
|
test_fuzz_blockundo_deserialize_LDFLAGS = $(RELDFLAGS) $(AM_LDFLAGS) $(LIBTOOL_APP_LDFLAGS)
|
2019-02-28 15:04:03 -05:00
|
|
|
test_fuzz_blockundo_deserialize_LDADD = $(FUZZ_SUITE_LD_COMMON)
|
2019-01-25 18:35:36 -05:00
|
|
|
|
2019-02-13 11:49:00 -05:00
|
|
|
test_fuzz_coins_deserialize_SOURCES = $(FUZZ_SUITE) test/fuzz/deserialize.cpp
|
2019-01-25 18:35:36 -05:00
|
|
|
test_fuzz_coins_deserialize_CPPFLAGS = $(AM_CPPFLAGS) $(BITCOIN_INCLUDES) -DCOINS_DESERIALIZE=1
|
|
|
|
test_fuzz_coins_deserialize_CXXFLAGS = $(AM_CXXFLAGS) $(PIE_FLAGS)
|
|
|
|
test_fuzz_coins_deserialize_LDFLAGS = $(RELDFLAGS) $(AM_LDFLAGS) $(LIBTOOL_APP_LDFLAGS)
|
2019-02-28 15:04:03 -05:00
|
|
|
test_fuzz_coins_deserialize_LDADD = $(FUZZ_SUITE_LD_COMMON)
|
2019-01-25 18:35:36 -05:00
|
|
|
|
2019-02-13 11:49:00 -05:00
|
|
|
test_fuzz_netaddr_deserialize_SOURCES = $(FUZZ_SUITE) test/fuzz/deserialize.cpp
|
2019-01-25 18:35:36 -05:00
|
|
|
test_fuzz_netaddr_deserialize_CPPFLAGS = $(AM_CPPFLAGS) $(BITCOIN_INCLUDES) -DNETADDR_DESERIALIZE=1
|
|
|
|
test_fuzz_netaddr_deserialize_CXXFLAGS = $(AM_CXXFLAGS) $(PIE_FLAGS)
|
|
|
|
test_fuzz_netaddr_deserialize_LDFLAGS = $(RELDFLAGS) $(AM_LDFLAGS) $(LIBTOOL_APP_LDFLAGS)
|
2019-02-28 15:04:03 -05:00
|
|
|
test_fuzz_netaddr_deserialize_LDADD = $(FUZZ_SUITE_LD_COMMON)
|
2019-01-25 18:35:36 -05:00
|
|
|
|
2019-02-13 14:25:49 -05:00
|
|
|
test_fuzz_script_flags_SOURCES = $(FUZZ_SUITE) test/fuzz/script_flags.cpp
|
|
|
|
test_fuzz_script_flags_CPPFLAGS = $(AM_CPPFLAGS) $(BITCOIN_INCLUDES)
|
|
|
|
test_fuzz_script_flags_CXXFLAGS = $(AM_CXXFLAGS) $(PIE_FLAGS)
|
|
|
|
test_fuzz_script_flags_LDFLAGS = $(RELDFLAGS) $(AM_LDFLAGS) $(LIBTOOL_APP_LDFLAGS)
|
2019-02-28 15:04:03 -05:00
|
|
|
test_fuzz_script_flags_LDADD = $(FUZZ_SUITE_LD_COMMON)
|
2019-02-13 14:25:49 -05:00
|
|
|
|
2019-02-13 11:49:00 -05:00
|
|
|
test_fuzz_service_deserialize_SOURCES = $(FUZZ_SUITE) test/fuzz/deserialize.cpp
|
2019-01-25 18:35:36 -05:00
|
|
|
test_fuzz_service_deserialize_CPPFLAGS = $(AM_CPPFLAGS) $(BITCOIN_INCLUDES) -DSERVICE_DESERIALIZE=1
|
|
|
|
test_fuzz_service_deserialize_CXXFLAGS = $(AM_CXXFLAGS) $(PIE_FLAGS)
|
|
|
|
test_fuzz_service_deserialize_LDFLAGS = $(RELDFLAGS) $(AM_LDFLAGS) $(LIBTOOL_APP_LDFLAGS)
|
2019-02-28 15:04:03 -05:00
|
|
|
test_fuzz_service_deserialize_LDADD = $(FUZZ_SUITE_LD_COMMON)
|
2019-01-25 18:35:36 -05:00
|
|
|
|
2019-02-13 11:49:00 -05:00
|
|
|
test_fuzz_messageheader_deserialize_SOURCES = $(FUZZ_SUITE) test/fuzz/deserialize.cpp
|
2019-01-25 18:35:36 -05:00
|
|
|
test_fuzz_messageheader_deserialize_CPPFLAGS = $(AM_CPPFLAGS) $(BITCOIN_INCLUDES) -DMESSAGEHEADER_DESERIALIZE=1
|
|
|
|
test_fuzz_messageheader_deserialize_CXXFLAGS = $(AM_CXXFLAGS) $(PIE_FLAGS)
|
|
|
|
test_fuzz_messageheader_deserialize_LDFLAGS = $(RELDFLAGS) $(AM_LDFLAGS) $(LIBTOOL_APP_LDFLAGS)
|
2019-02-28 15:04:03 -05:00
|
|
|
test_fuzz_messageheader_deserialize_LDADD = $(FUZZ_SUITE_LD_COMMON)
|
2019-01-25 18:35:36 -05:00
|
|
|
|
2019-02-13 11:49:00 -05:00
|
|
|
test_fuzz_address_deserialize_SOURCES = $(FUZZ_SUITE) test/fuzz/deserialize.cpp
|
2019-01-25 18:35:36 -05:00
|
|
|
test_fuzz_address_deserialize_CPPFLAGS = $(AM_CPPFLAGS) $(BITCOIN_INCLUDES) -DADDRESS_DESERIALIZE=1
|
|
|
|
test_fuzz_address_deserialize_CXXFLAGS = $(AM_CXXFLAGS) $(PIE_FLAGS)
|
|
|
|
test_fuzz_address_deserialize_LDFLAGS = $(RELDFLAGS) $(AM_LDFLAGS) $(LIBTOOL_APP_LDFLAGS)
|
2019-02-28 15:04:03 -05:00
|
|
|
test_fuzz_address_deserialize_LDADD = $(FUZZ_SUITE_LD_COMMON)
|
2019-01-25 18:35:36 -05:00
|
|
|
|
2019-02-13 11:49:00 -05:00
|
|
|
test_fuzz_inv_deserialize_SOURCES = $(FUZZ_SUITE) test/fuzz/deserialize.cpp
|
2019-01-25 18:35:36 -05:00
|
|
|
test_fuzz_inv_deserialize_CPPFLAGS = $(AM_CPPFLAGS) $(BITCOIN_INCLUDES) -DINV_DESERIALIZE=1
|
|
|
|
test_fuzz_inv_deserialize_CXXFLAGS = $(AM_CXXFLAGS) $(PIE_FLAGS)
|
|
|
|
test_fuzz_inv_deserialize_LDFLAGS = $(RELDFLAGS) $(AM_LDFLAGS) $(LIBTOOL_APP_LDFLAGS)
|
2019-02-28 15:04:03 -05:00
|
|
|
test_fuzz_inv_deserialize_LDADD = $(FUZZ_SUITE_LD_COMMON)
|
2019-01-25 18:35:36 -05:00
|
|
|
|
2019-02-13 11:49:00 -05:00
|
|
|
test_fuzz_bloomfilter_deserialize_SOURCES = $(FUZZ_SUITE) test/fuzz/deserialize.cpp
|
2019-01-25 18:35:36 -05:00
|
|
|
test_fuzz_bloomfilter_deserialize_CPPFLAGS = $(AM_CPPFLAGS) $(BITCOIN_INCLUDES) -DBLOOMFILTER_DESERIALIZE=1
|
|
|
|
test_fuzz_bloomfilter_deserialize_CXXFLAGS = $(AM_CXXFLAGS) $(PIE_FLAGS)
|
|
|
|
test_fuzz_bloomfilter_deserialize_LDFLAGS = $(RELDFLAGS) $(AM_LDFLAGS) $(LIBTOOL_APP_LDFLAGS)
|
2019-02-28 15:04:03 -05:00
|
|
|
test_fuzz_bloomfilter_deserialize_LDADD = $(FUZZ_SUITE_LD_COMMON)
|
2019-01-25 18:35:36 -05:00
|
|
|
|
2019-02-13 11:49:00 -05:00
|
|
|
test_fuzz_diskblockindex_deserialize_SOURCES = $(FUZZ_SUITE) test/fuzz/deserialize.cpp
|
2019-01-25 18:35:36 -05:00
|
|
|
test_fuzz_diskblockindex_deserialize_CPPFLAGS = $(AM_CPPFLAGS) $(BITCOIN_INCLUDES) -DDISKBLOCKINDEX_DESERIALIZE=1
|
|
|
|
test_fuzz_diskblockindex_deserialize_CXXFLAGS = $(AM_CXXFLAGS) $(PIE_FLAGS)
|
|
|
|
test_fuzz_diskblockindex_deserialize_LDFLAGS = $(RELDFLAGS) $(AM_LDFLAGS) $(LIBTOOL_APP_LDFLAGS)
|
2019-02-28 15:04:03 -05:00
|
|
|
test_fuzz_diskblockindex_deserialize_LDADD = $(FUZZ_SUITE_LD_COMMON)
|
2019-01-25 18:35:36 -05:00
|
|
|
|
2019-02-13 11:49:00 -05:00
|
|
|
test_fuzz_txoutcompressor_deserialize_SOURCES = $(FUZZ_SUITE) test/fuzz/deserialize.cpp
|
2019-01-25 18:35:36 -05:00
|
|
|
test_fuzz_txoutcompressor_deserialize_CPPFLAGS = $(AM_CPPFLAGS) $(BITCOIN_INCLUDES) -DTXOUTCOMPRESSOR_DESERIALIZE=1
|
|
|
|
test_fuzz_txoutcompressor_deserialize_CXXFLAGS = $(AM_CXXFLAGS) $(PIE_FLAGS)
|
|
|
|
test_fuzz_txoutcompressor_deserialize_LDFLAGS = $(RELDFLAGS) $(AM_LDFLAGS) $(LIBTOOL_APP_LDFLAGS)
|
2019-02-28 15:04:03 -05:00
|
|
|
test_fuzz_txoutcompressor_deserialize_LDADD = $(FUZZ_SUITE_LD_COMMON)
|
2019-01-25 18:35:36 -05:00
|
|
|
|
2019-02-13 11:49:00 -05:00
|
|
|
test_fuzz_blocktransactions_deserialize_SOURCES = $(FUZZ_SUITE) test/fuzz/deserialize.cpp
|
2019-01-25 18:35:36 -05:00
|
|
|
test_fuzz_blocktransactions_deserialize_CPPFLAGS = $(AM_CPPFLAGS) $(BITCOIN_INCLUDES) -DBLOCKTRANSACTIONS_DESERIALIZE=1
|
|
|
|
test_fuzz_blocktransactions_deserialize_CXXFLAGS = $(AM_CXXFLAGS) $(PIE_FLAGS)
|
|
|
|
test_fuzz_blocktransactions_deserialize_LDFLAGS = $(RELDFLAGS) $(AM_LDFLAGS) $(LIBTOOL_APP_LDFLAGS)
|
2019-02-28 15:04:03 -05:00
|
|
|
test_fuzz_blocktransactions_deserialize_LDADD = $(FUZZ_SUITE_LD_COMMON)
|
2019-01-25 18:35:36 -05:00
|
|
|
|
2019-02-13 11:49:00 -05:00
|
|
|
test_fuzz_blocktransactionsrequest_deserialize_SOURCES = $(FUZZ_SUITE) test/fuzz/deserialize.cpp
|
2019-01-25 18:35:36 -05:00
|
|
|
test_fuzz_blocktransactionsrequest_deserialize_CPPFLAGS = $(AM_CPPFLAGS) $(BITCOIN_INCLUDES) -DBLOCKTRANSACTIONSREQUEST_DESERIALIZE=1
|
|
|
|
test_fuzz_blocktransactionsrequest_deserialize_CXXFLAGS = $(AM_CXXFLAGS) $(PIE_FLAGS)
|
|
|
|
test_fuzz_blocktransactionsrequest_deserialize_LDFLAGS = $(RELDFLAGS) $(AM_LDFLAGS) $(LIBTOOL_APP_LDFLAGS)
|
2019-02-28 15:04:03 -05:00
|
|
|
test_fuzz_blocktransactionsrequest_deserialize_LDADD = $(FUZZ_SUITE_LD_COMMON)
|
2019-01-25 18:35:36 -05:00
|
|
|
endif # ENABLE_FUZZ
|
2014-11-18 12:06:32 -05:00
|
|
|
|
2014-05-28 13:38:41 -04:00
|
|
|
nodist_test_test_bitcoin_SOURCES = $(GENERATED_TEST_FILES)
|
|
|
|
|
|
|
|
$(BITCOIN_TESTS): $(GENERATED_TEST_FILES)
|
|
|
|
|
2018-10-09 22:31:51 -04:00
|
|
|
CLEAN_BITCOIN_TEST = test/*.gcda test/*.gcno $(GENERATED_TEST_FILES) $(BITCOIN_TESTS:=.log)
|
2014-05-28 13:38:41 -04:00
|
|
|
|
|
|
|
CLEANFILES += $(CLEAN_BITCOIN_TEST)
|
|
|
|
|
2018-08-28 13:50:41 +02:00
|
|
|
if TARGET_WINDOWS
|
2014-05-28 13:38:41 -04:00
|
|
|
bitcoin_test: $(TEST_BINARY)
|
2018-08-28 13:50:41 +02:00
|
|
|
else
|
|
|
|
if ENABLE_BENCH
|
|
|
|
bitcoin_test: $(TEST_BINARY) $(BENCH_BINARY)
|
|
|
|
else
|
|
|
|
bitcoin_test: $(TEST_BINARY)
|
|
|
|
endif
|
|
|
|
endif
|
2014-05-28 13:38:41 -04:00
|
|
|
|
|
|
|
bitcoin_test_check: $(TEST_BINARY) FORCE
|
|
|
|
$(MAKE) check-TESTS TESTS=$^
|
|
|
|
|
|
|
|
bitcoin_test_clean : FORCE
|
|
|
|
rm -f $(CLEAN_BITCOIN_TEST) $(test_test_bitcoin_OBJECTS) $(TEST_BINARY)
|
2014-06-04 17:13:03 -04:00
|
|
|
|
2018-04-09 19:56:25 -04:00
|
|
|
check-local: $(BITCOIN_TESTS:.cpp=.cpp.test)
|
2018-01-23 03:53:26 +00:00
|
|
|
if BUILD_BITCOIN_TX
|
2017-03-08 17:46:18 -05:00
|
|
|
@echo "Running test/util/bitcoin-util-test.py..."
|
2017-10-01 11:19:49 +02:00
|
|
|
$(PYTHON) $(top_builddir)/test/util/bitcoin-util-test.py
|
2018-01-23 03:53:26 +00:00
|
|
|
endif
|
2018-04-23 00:39:12 -07:00
|
|
|
@echo "Running test/util/rpcauth-test.py..."
|
|
|
|
$(PYTHON) $(top_builddir)/test/util/rpcauth-test.py
|
2018-08-28 13:50:41 +02:00
|
|
|
if TARGET_WINDOWS
|
|
|
|
else
|
|
|
|
if ENABLE_BENCH
|
|
|
|
@echo "Running bench/bench_bitcoin -evals=1 -scaling=0..."
|
|
|
|
$(BENCH_BINARY) -evals=1 -scaling=0 > /dev/null
|
|
|
|
endif
|
|
|
|
endif
|
2014-11-05 20:56:45 -05:00
|
|
|
$(AM_V_at)$(MAKE) $(AM_MAKEFLAGS) -C secp256k1 check
|
2016-01-14 00:26:23 +00:00
|
|
|
if EMBEDDED_UNIVALUE
|
2015-09-04 16:11:34 +02:00
|
|
|
$(AM_V_at)$(MAKE) $(AM_MAKEFLAGS) -C univalue check
|
2016-01-14 00:26:23 +00:00
|
|
|
endif
|
2014-11-05 20:56:45 -05:00
|
|
|
|
2018-04-09 19:56:25 -04:00
|
|
|
%.cpp.test: %.cpp
|
2018-05-31 10:30:38 +02:00
|
|
|
@echo Running tests: `cat $< | grep -E "(BOOST_FIXTURE_TEST_SUITE\\(|BOOST_AUTO_TEST_SUITE\\()" | cut -d '(' -f 2 | cut -d ',' -f 1 | cut -d ')' -f 1` from $<
|
|
|
|
$(AM_V_at)$(TEST_BINARY) -l test_suite -t "`cat $< | grep -E "(BOOST_FIXTURE_TEST_SUITE\\(|BOOST_AUTO_TEST_SUITE\\()" | cut -d '(' -f 2 | cut -d ',' -f 1 | cut -d ')' -f 1`" > $<.log 2>&1 || (cat $<.log && false)
|
2018-04-09 19:56:25 -04:00
|
|
|
|
2014-06-04 17:13:03 -04:00
|
|
|
%.json.h: %.json
|
|
|
|
@$(MKDIR_P) $(@D)
|
2016-11-12 07:15:02 +00:00
|
|
|
@{ \
|
|
|
|
echo "namespace json_tests{" && \
|
|
|
|
echo "static unsigned const char $(*F)[] = {" && \
|
|
|
|
$(HEXDUMP) -v -e '8/1 "0x%02x, "' -e '"\n"' $< | $(SED) -e 's/0x ,//g' && \
|
|
|
|
echo "};};"; \
|
|
|
|
} > "$@.new" && mv -f "$@.new" "$@"
|
2014-06-04 17:13:03 -04:00
|
|
|
@echo "Generated $@"
|