2016-09-21 19:31:23 -03: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 20:35:36 -03: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 16:25:49 -03:00
|
|
|
test/fuzz/script_flags \
|
2019-01-25 20:35:36 -03: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 13:49:01 -03:00
|
|
|
else
|
|
|
|
bin_PROGRAMS += test/test_bitcoin
|
2019-01-25 20:35:36 -03: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 20:37:10 -03:00
|
|
|
test/data/script_tests.json \
|
2014-05-28 13:38:41 -04:00
|
|
|
test/data/base58_encode_decode.json \
|
2018-01-23 22:38:23 -03:00
|
|
|
test/data/blockfilters.json \
|
2017-09-20 20:57:44 -03: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 20:57:44 -03:00
|
|
|
test/data/tx_valid.json
|
2014-05-28 13:38:41 -04:00
|
|
|
|
2016-03-07 16:44:09 -03: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 20:55:49 -03:00
|
|
|
BITCOIN_TEST_SUITE = \
|
2019-02-28 16:51:11 -03:00
|
|
|
test/main.cpp \
|
2018-04-09 20:55:49 -03:00
|
|
|
test/test_bitcoin.h \
|
|
|
|
test/test_bitcoin.cpp
|
|
|
|
|
2019-01-25 20:35:36 -03:00
|
|
|
FUZZ_SUITE = \
|
2019-02-28 17:04:03 -03:00
|
|
|
test/test_bitcoin.h \
|
|
|
|
test/test_bitcoin.cpp \
|
2019-01-25 20:35:36 -03:00
|
|
|
test/fuzz/fuzz.cpp \
|
|
|
|
test/fuzz/fuzz.h
|
|
|
|
|
2019-02-28 17:04:03 -03: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 19:19:33 -03:00
|
|
|
# test_bitcoin binary #
|
2014-05-28 13:38:41 -04:00
|
|
|
BITCOIN_TESTS =\
|
2014-12-15 06:22:19 -03:00
|
|
|
test/arith_uint256_tests.cpp \
|
2015-11-25 09:19:48 -03:00
|
|
|
test/scriptnum10.h \
|
2015-09-22 16:24:16 -03:00
|
|
|
test/addrman_tests.cpp \
|
2016-03-17 12:47:15 -03: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 22:12:39 -03:00
|
|
|
test/bech32_tests.cpp \
|
2015-04-23 08:20:18 -03: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 20:40:02 -03:00
|
|
|
test/blockchain_tests.cpp \
|
2016-04-25 19:51:08 -03:00
|
|
|
test/blockencodings_tests.cpp \
|
2018-01-23 22:13:04 -03:00
|
|
|
test/blockfilter_tests.cpp \
|
2014-05-28 13:38:41 -04:00
|
|
|
test/bloom_tests.cpp \
|
2016-12-16 04:52:35 -03:00
|
|
|
test/bswap_tests.cpp \
|
2017-01-07 21:51:23 -03:00
|
|
|
test/checkqueue_tests.cpp \
|
2014-09-16 20:27:06 -03:00
|
|
|
test/coins_tests.cpp \
|
2014-10-31 05:36:30 -03:00
|
|
|
test/compress_tests.cpp \
|
2014-05-31 16:01:42 -04:00
|
|
|
test/crypto_tests.cpp \
|
2016-10-05 17:59:18 -03:00
|
|
|
test/cuckoocache_tests.cpp \
|
2018-05-23 08:14:58 -04:00
|
|
|
test/denialofservice_tests.cpp \
|
2018-07-15 22:32:09 -04:00
|
|
|
test/descriptor_tests.cpp \
|
2019-01-07 03:23:34 -03:00
|
|
|
test/flatfile_tests.cpp \
|
2018-09-07 10:12:24 -03:00
|
|
|
test/fs_tests.cpp \
|
2014-05-28 13:38:41 -04:00
|
|
|
test/getarg_tests.cpp \
|
2014-04-20 12:36:25 -03:00
|
|
|
test/hash_tests.cpp \
|
2017-09-20 20:57:44 -03:00
|
|
|
test/key_io_tests.cpp \
|
2014-05-28 13:38:41 -04:00
|
|
|
test/key_tests.cpp \
|
2015-08-17 13:07:47 -03:00
|
|
|
test/limitedmap_tests.cpp \
|
2015-10-22 22:33:06 -03:00
|
|
|
test/dbwrapper_tests.cpp \
|
2019-02-28 17:02:35 -03:00
|
|
|
test/validation_tests.cpp \
|
2015-03-25 14:13:09 -03:00
|
|
|
test/mempool_tests.cpp \
|
2015-11-17 13:35:44 -03:00
|
|
|
test/merkle_tests.cpp \
|
2017-09-11 21:43:48 -03:00
|
|
|
test/merkleblock_tests.cpp \
|
2014-05-28 13:38:41 -04:00
|
|
|
test/miner_tests.cpp \
|
|
|
|
test/multisig_tests.cpp \
|
2016-03-16 13:54:30 -03: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 09:57:44 -03:00
|
|
|
test/pow_tests.cpp \
|
2015-10-29 03:11:24 -03:00
|
|
|
test/prevector_tests.cpp \
|
2016-12-21 01:43:49 -03:00
|
|
|
test/raii_event_tests.cpp \
|
2017-02-15 22:45:22 -03:00
|
|
|
test/random_tests.cpp \
|
2015-09-03 13:53:00 -03:00
|
|
|
test/reverselock_tests.cpp \
|
2014-05-28 13:38:41 -04:00
|
|
|
test/rpc_tests.cpp \
|
2015-01-05 23:39:40 -03:00
|
|
|
test/sanity_tests.cpp \
|
2015-04-10 11:31:02 -03:00
|
|
|
test/scheduler_tests.cpp \
|
2018-05-23 08:14:58 -04:00
|
|
|
test/script_p2sh_tests.cpp \
|
2014-05-28 13:38:41 -04:00
|
|
|
test/script_tests.cpp \
|
2017-08-18 18:40:29 -03:00
|
|
|
test/script_standard_tests.cpp \
|
2014-10-31 05:36:30 -03:00
|
|
|
test/scriptnum_tests.cpp \
|
2014-05-28 13:38:41 -04:00
|
|
|
test/serialize_tests.cpp \
|
2014-10-31 05:36:30 -03:00
|
|
|
test/sighash_tests.cpp \
|
2014-05-28 13:38:41 -04:00
|
|
|
test/sigopcount_tests.cpp \
|
2014-06-29 09:26:58 -04:00
|
|
|
test/skiplist_tests.cpp \
|
2015-09-07 19:22:23 -03:00
|
|
|
test/streams_tests.cpp \
|
2017-11-08 17:28:35 -03:00
|
|
|
test/sync_tests.cpp \
|
2014-08-20 07:53:42 -04:00
|
|
|
test/timedata_tests.cpp \
|
2017-03-25 04:17:37 -03:00
|
|
|
test/torcontrol_tests.cpp \
|
2014-05-28 13:38:41 -04:00
|
|
|
test/transaction_tests.cpp \
|
2017-12-08 17:00:13 -03:00
|
|
|
test/txindex_tests.cpp \
|
2017-11-18 05:48:34 -03:00
|
|
|
test/txvalidation_tests.cpp \
|
2015-03-03 11:59:32 -03:00
|
|
|
test/txvalidationcache_tests.cpp \
|
2014-12-16 11:50:31 -03:00
|
|
|
test/uint256_tests.cpp \
|
2018-04-18 09:01:48 -03: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 20:37:10 -03: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 22:10:20 -03:00
|
|
|
wallet/test/db_tests.cpp \
|
2018-06-27 20:05:54 -04:00
|
|
|
wallet/test/psbt_wallet_tests.cpp \
|
2015-02-03 17:09:47 -03:00
|
|
|
wallet/test/wallet_tests.cpp \
|
2018-04-05 17:00:39 -03:00
|
|
|
wallet/test/wallet_crypto_tests.cpp \
|
2018-09-10 21:49:17 -03:00
|
|
|
wallet/test/coinselector_tests.cpp \
|
|
|
|
wallet/test/init_tests.cpp
|
2018-04-09 20:55:49 -03:00
|
|
|
|
|
|
|
BITCOIN_TEST_SUITE += \
|
|
|
|
wallet/test/wallet_test_fixture.cpp \
|
2018-09-10 21:49:17 -03: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 20:55:49 -03:00
|
|
|
test_test_bitcoin_SOURCES = $(BITCOIN_TEST_SUITE) $(BITCOIN_TESTS) $(JSON_TEST_FILES) $(RAW_TEST_FILES)
|
2017-08-15 11:40:30 -03:00
|
|
|
test_test_bitcoin_CPPFLAGS = $(AM_CPPFLAGS) $(BITCOIN_INCLUDES) $(TESTDEFS) $(EVENT_CFLAGS)
|
2017-07-07 10:03:24 -04: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 14:27:57 -03: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 10:03:24 -04: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 08:30:58 -03:00
|
|
|
test_test_bitcoin_LDADD += $(BDB_LIBS) $(CRYPTO_LIBS) $(MINIUPNPC_LIBS) $(RAPIDCHECK_LIBS)
|
2014-11-20 15:40:01 -03:00
|
|
|
test_test_bitcoin_LDFLAGS = $(RELDFLAGS) $(AM_LDFLAGS) $(LIBTOOL_APP_LDFLAGS) -static
|
2014-05-28 13:38:41 -04:00
|
|
|
|
2014-11-18 14:06:32 -03:00
|
|
|
if ENABLE_ZMQ
|
2019-02-28 17:45:26 -03:00
|
|
|
test_test_bitcoin_LDADD += $(LIBBITCOIN_ZMQ) $(ZMQ_LIBS)
|
2014-11-18 14:06:32 -03:00
|
|
|
endif
|
2019-01-25 20:35:36 -03:00
|
|
|
|
|
|
|
if ENABLE_FUZZ
|
2019-02-13 13:49:00 -03:00
|
|
|
test_fuzz_block_deserialize_SOURCES = $(FUZZ_SUITE) test/fuzz/deserialize.cpp
|
2019-01-25 20:35:36 -03: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 17:04:03 -03:00
|
|
|
test_fuzz_block_deserialize_LDADD = $(FUZZ_SUITE_LD_COMMON)
|
2019-01-25 20:35:36 -03:00
|
|
|
|
2019-02-13 13:49:00 -03:00
|
|
|
test_fuzz_transaction_deserialize_SOURCES = $(FUZZ_SUITE) test/fuzz/deserialize.cpp
|
2019-01-25 20:35:36 -03: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 17:04:03 -03:00
|
|
|
test_fuzz_transaction_deserialize_LDADD = $(FUZZ_SUITE_LD_COMMON)
|
2019-01-25 20:35:36 -03:00
|
|
|
|
2019-02-13 13:49:00 -03:00
|
|
|
test_fuzz_blocklocator_deserialize_SOURCES = $(FUZZ_SUITE) test/fuzz/deserialize.cpp
|
2019-01-25 20:35:36 -03: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 17:04:03 -03:00
|
|
|
test_fuzz_blocklocator_deserialize_LDADD = $(FUZZ_SUITE_LD_COMMON)
|
2019-01-25 20:35:36 -03:00
|
|
|
|
2019-02-13 13:49:00 -03:00
|
|
|
test_fuzz_blockmerkleroot_SOURCES = $(FUZZ_SUITE) test/fuzz/deserialize.cpp
|
2019-01-25 20:35:36 -03: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 17:04:03 -03:00
|
|
|
test_fuzz_blockmerkleroot_LDADD = $(FUZZ_SUITE_LD_COMMON)
|
2019-01-25 20:35:36 -03:00
|
|
|
|
2019-02-13 13:49:00 -03:00
|
|
|
test_fuzz_addrman_deserialize_SOURCES = $(FUZZ_SUITE) test/fuzz/deserialize.cpp
|
2019-01-25 20:35:36 -03: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 17:04:03 -03:00
|
|
|
test_fuzz_addrman_deserialize_LDADD = $(FUZZ_SUITE_LD_COMMON)
|
2019-01-25 20:35:36 -03:00
|
|
|
|
2019-02-13 13:49:00 -03:00
|
|
|
test_fuzz_blockheader_deserialize_SOURCES = $(FUZZ_SUITE) test/fuzz/deserialize.cpp
|
2019-01-25 20:35:36 -03: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 17:04:03 -03:00
|
|
|
test_fuzz_blockheader_deserialize_LDADD = $(FUZZ_SUITE_LD_COMMON)
|
2019-01-25 20:35:36 -03:00
|
|
|
|
2019-02-13 13:49:00 -03:00
|
|
|
test_fuzz_banentry_deserialize_SOURCES = $(FUZZ_SUITE) test/fuzz/deserialize.cpp
|
2019-01-25 20:35:36 -03: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 17:04:03 -03:00
|
|
|
test_fuzz_banentry_deserialize_LDADD = $(FUZZ_SUITE_LD_COMMON)
|
2019-01-25 20:35:36 -03:00
|
|
|
|
2019-02-13 13:49:00 -03:00
|
|
|
test_fuzz_txundo_deserialize_SOURCES = $(FUZZ_SUITE) test/fuzz/deserialize.cpp
|
2019-01-25 20:35:36 -03: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 17:04:03 -03:00
|
|
|
test_fuzz_txundo_deserialize_LDADD = $(FUZZ_SUITE_LD_COMMON)
|
2019-01-25 20:35:36 -03:00
|
|
|
|
2019-02-13 13:49:00 -03:00
|
|
|
test_fuzz_blockundo_deserialize_SOURCES = $(FUZZ_SUITE) test/fuzz/deserialize.cpp
|
2019-01-25 20:35:36 -03: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 17:04:03 -03:00
|
|
|
test_fuzz_blockundo_deserialize_LDADD = $(FUZZ_SUITE_LD_COMMON)
|
2019-01-25 20:35:36 -03:00
|
|
|
|
2019-02-13 13:49:00 -03:00
|
|
|
test_fuzz_coins_deserialize_SOURCES = $(FUZZ_SUITE) test/fuzz/deserialize.cpp
|
2019-01-25 20:35:36 -03: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 17:04:03 -03:00
|
|
|
test_fuzz_coins_deserialize_LDADD = $(FUZZ_SUITE_LD_COMMON)
|
2019-01-25 20:35:36 -03:00
|
|
|
|
2019-02-13 13:49:00 -03:00
|
|
|
test_fuzz_netaddr_deserialize_SOURCES = $(FUZZ_SUITE) test/fuzz/deserialize.cpp
|
2019-01-25 20:35:36 -03: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 17:04:03 -03:00
|
|
|
test_fuzz_netaddr_deserialize_LDADD = $(FUZZ_SUITE_LD_COMMON)
|
2019-01-25 20:35:36 -03:00
|
|
|
|
2019-02-13 16:25:49 -03: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 17:04:03 -03:00
|
|
|
test_fuzz_script_flags_LDADD = $(FUZZ_SUITE_LD_COMMON)
|
2019-02-13 16:25:49 -03:00
|
|
|
|
2019-02-13 13:49:00 -03:00
|
|
|
test_fuzz_service_deserialize_SOURCES = $(FUZZ_SUITE) test/fuzz/deserialize.cpp
|
2019-01-25 20:35:36 -03: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 17:04:03 -03:00
|
|
|
test_fuzz_service_deserialize_LDADD = $(FUZZ_SUITE_LD_COMMON)
|
2019-01-25 20:35:36 -03:00
|
|
|
|
2019-02-13 13:49:00 -03:00
|
|
|
test_fuzz_messageheader_deserialize_SOURCES = $(FUZZ_SUITE) test/fuzz/deserialize.cpp
|
2019-01-25 20:35:36 -03: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 17:04:03 -03:00
|
|
|
test_fuzz_messageheader_deserialize_LDADD = $(FUZZ_SUITE_LD_COMMON)
|
2019-01-25 20:35:36 -03:00
|
|
|
|
2019-02-13 13:49:00 -03:00
|
|
|
test_fuzz_address_deserialize_SOURCES = $(FUZZ_SUITE) test/fuzz/deserialize.cpp
|
2019-01-25 20:35:36 -03: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 17:04:03 -03:00
|
|
|
test_fuzz_address_deserialize_LDADD = $(FUZZ_SUITE_LD_COMMON)
|
2019-01-25 20:35:36 -03:00
|
|
|
|
2019-02-13 13:49:00 -03:00
|
|
|
test_fuzz_inv_deserialize_SOURCES = $(FUZZ_SUITE) test/fuzz/deserialize.cpp
|
2019-01-25 20:35:36 -03: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 17:04:03 -03:00
|
|
|
test_fuzz_inv_deserialize_LDADD = $(FUZZ_SUITE_LD_COMMON)
|
2019-01-25 20:35:36 -03:00
|
|
|
|
2019-02-13 13:49:00 -03:00
|
|
|
test_fuzz_bloomfilter_deserialize_SOURCES = $(FUZZ_SUITE) test/fuzz/deserialize.cpp
|
2019-01-25 20:35:36 -03: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 17:04:03 -03:00
|
|
|
test_fuzz_bloomfilter_deserialize_LDADD = $(FUZZ_SUITE_LD_COMMON)
|
2019-01-25 20:35:36 -03:00
|
|
|
|
2019-02-13 13:49:00 -03:00
|
|
|
test_fuzz_diskblockindex_deserialize_SOURCES = $(FUZZ_SUITE) test/fuzz/deserialize.cpp
|
2019-01-25 20:35:36 -03: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 17:04:03 -03:00
|
|
|
test_fuzz_diskblockindex_deserialize_LDADD = $(FUZZ_SUITE_LD_COMMON)
|
2019-01-25 20:35:36 -03:00
|
|
|
|
2019-02-13 13:49:00 -03:00
|
|
|
test_fuzz_txoutcompressor_deserialize_SOURCES = $(FUZZ_SUITE) test/fuzz/deserialize.cpp
|
2019-01-25 20:35:36 -03: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 17:04:03 -03:00
|
|
|
test_fuzz_txoutcompressor_deserialize_LDADD = $(FUZZ_SUITE_LD_COMMON)
|
2019-01-25 20:35:36 -03:00
|
|
|
|
2019-02-13 13:49:00 -03:00
|
|
|
test_fuzz_blocktransactions_deserialize_SOURCES = $(FUZZ_SUITE) test/fuzz/deserialize.cpp
|
2019-01-25 20:35:36 -03: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 17:04:03 -03:00
|
|
|
test_fuzz_blocktransactions_deserialize_LDADD = $(FUZZ_SUITE_LD_COMMON)
|
2019-01-25 20:35:36 -03:00
|
|
|
|
2019-02-13 13:49:00 -03:00
|
|
|
test_fuzz_blocktransactionsrequest_deserialize_SOURCES = $(FUZZ_SUITE) test/fuzz/deserialize.cpp
|
2019-01-25 20:35:36 -03: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 17:04:03 -03:00
|
|
|
test_fuzz_blocktransactionsrequest_deserialize_LDADD = $(FUZZ_SUITE_LD_COMMON)
|
2019-01-25 20:35:36 -03:00
|
|
|
endif # ENABLE_FUZZ
|
2014-11-18 14:06:32 -03: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 23:31:51 -03: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 08:50:41 -03:00
|
|
|
if TARGET_WINDOWS
|
2014-05-28 13:38:41 -04:00
|
|
|
bitcoin_test: $(TEST_BINARY)
|
2018-08-28 08:50:41 -03: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 20:56:25 -03:00
|
|
|
check-local: $(BITCOIN_TESTS:.cpp=.cpp.test)
|
2018-01-23 00:53:26 -03:00
|
|
|
if BUILD_BITCOIN_TX
|
2017-03-08 19:46:18 -03:00
|
|
|
@echo "Running test/util/bitcoin-util-test.py..."
|
2017-10-01 06:19:49 -03:00
|
|
|
$(PYTHON) $(top_builddir)/test/util/bitcoin-util-test.py
|
2018-01-23 00:53:26 -03:00
|
|
|
endif
|
2018-04-23 04:39:12 -03:00
|
|
|
@echo "Running test/util/rpcauth-test.py..."
|
|
|
|
$(PYTHON) $(top_builddir)/test/util/rpcauth-test.py
|
2018-08-28 08:50:41 -03: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 22:56:45 -03:00
|
|
|
$(AM_V_at)$(MAKE) $(AM_MAKEFLAGS) -C secp256k1 check
|
2016-01-13 21:26:23 -03:00
|
|
|
if EMBEDDED_UNIVALUE
|
2015-09-04 11:11:34 -03:00
|
|
|
$(AM_V_at)$(MAKE) $(AM_MAKEFLAGS) -C univalue check
|
2016-01-13 21:26:23 -03:00
|
|
|
endif
|
2014-11-05 22:56:45 -03:00
|
|
|
|
2018-04-09 20:56:25 -03:00
|
|
|
%.cpp.test: %.cpp
|
2018-05-31 04:30:38 -04: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 20:56:25 -03:00
|
|
|
|
2014-06-04 17:13:03 -04:00
|
|
|
%.json.h: %.json
|
|
|
|
@$(MKDIR_P) $(@D)
|
2016-11-12 04:15:02 -03: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 $@"
|