2016-09-22 00:31:23 +02: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.
|
|
|
|
|
2014-05-28 19:38:41 +02:00
|
|
|
bin_PROGRAMS += test/test_bitcoin
|
2019-01-26 00:35:36 +01: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 \
|
|
|
|
test/fuzz/service_deserialize \
|
|
|
|
test/fuzz/transaction_deserialize \
|
|
|
|
test/fuzz/txoutcompressor_deserialize \
|
|
|
|
test/fuzz/txundo_deserialize
|
|
|
|
|
|
|
|
if ENABLE_FUZZ
|
|
|
|
noinst_PROGRAMS += $(FUZZ_TARGETS:=)
|
|
|
|
endif
|
|
|
|
|
2014-05-28 19:38:41 +02:00
|
|
|
TEST_SRCDIR = test
|
|
|
|
TEST_BINARY=test/test_bitcoin$(EXEEXT)
|
|
|
|
|
|
|
|
JSON_TEST_FILES = \
|
2018-03-25 00:37:10 +01:00
|
|
|
test/data/script_tests.json \
|
2014-05-28 19:38:41 +02:00
|
|
|
test/data/base58_encode_decode.json \
|
2018-01-24 02:38:23 +01:00
|
|
|
test/data/blockfilters.json \
|
2017-09-21 01:57:44 +02: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 19:38:41 +02:00
|
|
|
test/data/tx_invalid.json \
|
2017-09-21 01:57:44 +02:00
|
|
|
test/data/tx_valid.json
|
2014-05-28 19:38:41 +02:00
|
|
|
|
2016-03-07 20:44:09 +01:00
|
|
|
RAW_TEST_FILES =
|
2014-05-28 19:38:41 +02:00
|
|
|
|
|
|
|
GENERATED_TEST_FILES = $(JSON_TEST_FILES:.json=.json.h) $(RAW_TEST_FILES:.raw=.raw.h)
|
|
|
|
|
2018-04-10 01:55:49 +02:00
|
|
|
BITCOIN_TEST_SUITE = \
|
|
|
|
test/test_bitcoin_main.cpp \
|
|
|
|
test/test_bitcoin.h \
|
|
|
|
test/test_bitcoin.cpp
|
|
|
|
|
2019-01-26 00:35:36 +01:00
|
|
|
FUZZ_SUITE = \
|
|
|
|
test/fuzz/fuzz.cpp \
|
|
|
|
test/fuzz/fuzz.h
|
|
|
|
|
2016-04-23 00:19:33 +02:00
|
|
|
# test_bitcoin binary #
|
2014-05-28 19:38:41 +02: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 21:24:16 +02:00
|
|
|
test/addrman_tests.cpp \
|
2016-03-17 16:47:15 +01:00
|
|
|
test/amount_tests.cpp \
|
2014-05-28 19:38:41 +02:00
|
|
|
test/allocator_tests.cpp \
|
|
|
|
test/base32_tests.cpp \
|
|
|
|
test/base58_tests.cpp \
|
|
|
|
test/base64_tests.cpp \
|
2017-08-26 03:12:39 +02: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-22 00:40:02 +01:00
|
|
|
test/blockchain_tests.cpp \
|
2016-04-26 00:51:08 +02:00
|
|
|
test/blockencodings_tests.cpp \
|
2018-01-24 02:13:04 +01:00
|
|
|
test/blockfilter_tests.cpp \
|
2014-05-28 19:38:41 +02:00
|
|
|
test/bloom_tests.cpp \
|
2016-12-16 08:52:35 +01:00
|
|
|
test/bswap_tests.cpp \
|
2017-01-08 01:51:23 +01:00
|
|
|
test/checkqueue_tests.cpp \
|
2014-09-17 01:27:06 +02:00
|
|
|
test/coins_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 22:59:18 +02:00
|
|
|
test/cuckoocache_tests.cpp \
|
2018-05-23 14:14:58 +02:00
|
|
|
test/denialofservice_tests.cpp \
|
2018-07-16 04:32:09 +02:00
|
|
|
test/descriptor_tests.cpp \
|
2018-09-07 15:12:24 +02:00
|
|
|
test/fs_tests.cpp \
|
2014-05-28 19:38:41 +02:00
|
|
|
test/getarg_tests.cpp \
|
2014-04-20 17:36:25 +02:00
|
|
|
test/hash_tests.cpp \
|
2017-09-21 01:57:44 +02:00
|
|
|
test/key_io_tests.cpp \
|
2014-05-28 19:38:41 +02:00
|
|
|
test/key_tests.cpp \
|
2015-08-17 18:07:47 +02:00
|
|
|
test/limitedmap_tests.cpp \
|
2015-10-23 03:33:06 +02:00
|
|
|
test/dbwrapper_tests.cpp \
|
2014-05-28 19:38:41 +02:00
|
|
|
test/main_tests.cpp \
|
2015-03-25 18:13:09 +01:00
|
|
|
test/mempool_tests.cpp \
|
2015-11-17 17:35:44 +01:00
|
|
|
test/merkle_tests.cpp \
|
2017-09-12 02:43:48 +02:00
|
|
|
test/merkleblock_tests.cpp \
|
2014-05-28 19:38:41 +02:00
|
|
|
test/miner_tests.cpp \
|
|
|
|
test/multisig_tests.cpp \
|
2016-03-16 17:54:30 +01:00
|
|
|
test/net_tests.cpp \
|
2014-05-28 19:38:41 +02:00
|
|
|
test/netbase_tests.cpp \
|
|
|
|
test/pmt_tests.cpp \
|
2014-08-26 22:28:32 +02:00
|
|
|
test/policyestimator_tests.cpp \
|
2015-02-21 13:57:44 +01:00
|
|
|
test/pow_tests.cpp \
|
2015-10-29 07:11:24 +01:00
|
|
|
test/prevector_tests.cpp \
|
2016-12-21 05:43:49 +01:00
|
|
|
test/raii_event_tests.cpp \
|
2017-02-16 02:45:22 +01:00
|
|
|
test/random_tests.cpp \
|
2015-09-03 18:53:00 +02:00
|
|
|
test/reverselock_tests.cpp \
|
2014-05-28 19:38:41 +02:00
|
|
|
test/rpc_tests.cpp \
|
2015-01-06 03:39:40 +01:00
|
|
|
test/sanity_tests.cpp \
|
2015-04-10 16:31:02 +02:00
|
|
|
test/scheduler_tests.cpp \
|
2018-05-23 14:14:58 +02:00
|
|
|
test/script_p2sh_tests.cpp \
|
2014-05-28 19:38:41 +02:00
|
|
|
test/script_tests.cpp \
|
2017-08-18 23:40:29 +02:00
|
|
|
test/script_standard_tests.cpp \
|
2014-10-31 09:36:30 +01:00
|
|
|
test/scriptnum_tests.cpp \
|
2014-05-28 19:38:41 +02:00
|
|
|
test/serialize_tests.cpp \
|
2014-10-31 09:36:30 +01:00
|
|
|
test/sighash_tests.cpp \
|
2014-05-28 19:38:41 +02:00
|
|
|
test/sigopcount_tests.cpp \
|
2014-06-29 15:26:58 +02:00
|
|
|
test/skiplist_tests.cpp \
|
2015-09-08 00:22:23 +02:00
|
|
|
test/streams_tests.cpp \
|
2017-11-08 21:28:35 +01:00
|
|
|
test/sync_tests.cpp \
|
2014-08-20 13:53:42 +02:00
|
|
|
test/timedata_tests.cpp \
|
2017-03-25 08:17:37 +01:00
|
|
|
test/torcontrol_tests.cpp \
|
2014-05-28 19:38:41 +02:00
|
|
|
test/transaction_tests.cpp \
|
2017-12-08 21:00:13 +01:00
|
|
|
test/txindex_tests.cpp \
|
2017-11-18 09:48:34 +01:00
|
|
|
test/txvalidation_tests.cpp \
|
2015-03-03 15:59:32 +01:00
|
|
|
test/txvalidationcache_tests.cpp \
|
2014-12-16 15:50:31 +01:00
|
|
|
test/uint256_tests.cpp \
|
2018-04-18 14:01:48 +02:00
|
|
|
test/util_tests.cpp \
|
|
|
|
test/validation_block_tests.cpp \
|
|
|
|
test/versionbits_tests.cpp
|
2014-05-28 19:38:41 +02:00
|
|
|
|
2018-03-25 00:37:10 +01: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 19:38:41 +02:00
|
|
|
if ENABLE_WALLET
|
|
|
|
BITCOIN_TESTS += \
|
2018-09-15 03:10:20 +02:00
|
|
|
wallet/test/db_tests.cpp \
|
2018-06-28 02:05:54 +02:00
|
|
|
wallet/test/psbt_wallet_tests.cpp \
|
2015-02-03 21:09:47 +01:00
|
|
|
wallet/test/wallet_tests.cpp \
|
2018-04-05 22:00:39 +02:00
|
|
|
wallet/test/wallet_crypto_tests.cpp \
|
2018-09-11 02:49:17 +02:00
|
|
|
wallet/test/coinselector_tests.cpp \
|
|
|
|
wallet/test/init_tests.cpp
|
2018-04-10 01:55:49 +02:00
|
|
|
|
|
|
|
BITCOIN_TEST_SUITE += \
|
|
|
|
wallet/test/wallet_test_fixture.cpp \
|
2018-09-11 02:49:17 +02:00
|
|
|
wallet/test/wallet_test_fixture.h \
|
|
|
|
wallet/test/init_test_fixture.cpp \
|
|
|
|
wallet/test/init_test_fixture.h
|
2014-05-28 19:38:41 +02:00
|
|
|
endif
|
|
|
|
|
2018-04-10 01:55:49 +02: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 19:38:41 +02:00
|
|
|
if ENABLE_WALLET
|
|
|
|
test_test_bitcoin_LDADD += $(LIBBITCOIN_WALLET)
|
|
|
|
endif
|
2018-05-08 19:27:57 +02:00
|
|
|
|
2018-06-06 21:20:34 +02: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 16:57:28 +02:00
|
|
|
|
2018-11-29 12:30:58 +01:00
|
|
|
test_test_bitcoin_LDADD += $(BDB_LIBS) $(CRYPTO_LIBS) $(MINIUPNPC_LIBS) $(RAPIDCHECK_LIBS)
|
2014-11-20 19:40:01 +01:00
|
|
|
test_test_bitcoin_LDFLAGS = $(RELDFLAGS) $(AM_LDFLAGS) $(LIBTOOL_APP_LDFLAGS) -static
|
2014-05-28 19:38:41 +02:00
|
|
|
|
2014-11-18 18:06:32 +01:00
|
|
|
if ENABLE_ZMQ
|
|
|
|
test_test_bitcoin_LDADD += $(ZMQ_LIBS)
|
|
|
|
endif
|
2019-01-26 00:35:36 +01:00
|
|
|
|
|
|
|
if ENABLE_FUZZ
|
|
|
|
test_fuzz_block_deserialize_SOURCES = $(FUZZ_SUITE) test/test_bitcoin_fuzzy.cpp
|
|
|
|
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)
|
|
|
|
test_fuzz_block_deserialize_LDADD = \
|
|
|
|
$(LIBUNIVALUE) \
|
|
|
|
$(LIBBITCOIN_SERVER) \
|
|
|
|
$(LIBBITCOIN_COMMON) \
|
|
|
|
$(LIBBITCOIN_UTIL) \
|
|
|
|
$(LIBBITCOIN_CONSENSUS) \
|
|
|
|
$(LIBBITCOIN_CRYPTO) \
|
|
|
|
$(LIBBITCOIN_CRYPTO_SSE41) \
|
|
|
|
$(LIBBITCOIN_CRYPTO_AVX2) \
|
|
|
|
$(LIBBITCOIN_CRYPTO_SHANI) \
|
|
|
|
$(LIBSECP256K1)
|
|
|
|
test_fuzz_block_deserialize_LDADD += $(BOOST_LIBS) $(CRYPTO_LIBS)
|
|
|
|
|
|
|
|
test_fuzz_transaction_deserialize_SOURCES = $(FUZZ_SUITE) test/test_bitcoin_fuzzy.cpp
|
|
|
|
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)
|
|
|
|
test_fuzz_transaction_deserialize_LDADD = \
|
|
|
|
$(LIBUNIVALUE) \
|
|
|
|
$(LIBBITCOIN_SERVER) \
|
|
|
|
$(LIBBITCOIN_COMMON) \
|
|
|
|
$(LIBBITCOIN_UTIL) \
|
|
|
|
$(LIBBITCOIN_CONSENSUS) \
|
|
|
|
$(LIBBITCOIN_CRYPTO) \
|
|
|
|
$(LIBBITCOIN_CRYPTO_SSE41) \
|
|
|
|
$(LIBBITCOIN_CRYPTO_AVX2) \
|
|
|
|
$(LIBBITCOIN_CRYPTO_SHANI) \
|
|
|
|
$(LIBSECP256K1)
|
|
|
|
test_fuzz_transaction_deserialize_LDADD += $(BOOST_LIBS) $(CRYPTO_LIBS)
|
|
|
|
|
|
|
|
test_fuzz_blocklocator_deserialize_SOURCES = $(FUZZ_SUITE) test/test_bitcoin_fuzzy.cpp
|
|
|
|
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)
|
|
|
|
test_fuzz_blocklocator_deserialize_LDADD = \
|
|
|
|
$(LIBUNIVALUE) \
|
|
|
|
$(LIBBITCOIN_SERVER) \
|
|
|
|
$(LIBBITCOIN_COMMON) \
|
|
|
|
$(LIBBITCOIN_UTIL) \
|
|
|
|
$(LIBBITCOIN_CONSENSUS) \
|
|
|
|
$(LIBBITCOIN_CRYPTO) \
|
|
|
|
$(LIBBITCOIN_CRYPTO_SSE41) \
|
|
|
|
$(LIBBITCOIN_CRYPTO_AVX2) \
|
|
|
|
$(LIBBITCOIN_CRYPTO_SHANI) \
|
|
|
|
$(LIBSECP256K1)
|
|
|
|
test_fuzz_blocklocator_deserialize_LDADD += $(BOOST_LIBS) $(CRYPTO_LIBS)
|
|
|
|
|
|
|
|
test_fuzz_blockmerkleroot_SOURCES = $(FUZZ_SUITE) test/test_bitcoin_fuzzy.cpp
|
|
|
|
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)
|
|
|
|
test_fuzz_blockmerkleroot_LDADD = \
|
|
|
|
$(LIBUNIVALUE) \
|
|
|
|
$(LIBBITCOIN_SERVER) \
|
|
|
|
$(LIBBITCOIN_COMMON) \
|
|
|
|
$(LIBBITCOIN_UTIL) \
|
|
|
|
$(LIBBITCOIN_CONSENSUS) \
|
|
|
|
$(LIBBITCOIN_CRYPTO) \
|
|
|
|
$(LIBBITCOIN_CRYPTO_SSE41) \
|
|
|
|
$(LIBBITCOIN_CRYPTO_AVX2) \
|
|
|
|
$(LIBBITCOIN_CRYPTO_SHANI) \
|
|
|
|
$(LIBSECP256K1)
|
|
|
|
test_fuzz_blockmerkleroot_LDADD += $(BOOST_LIBS) $(CRYPTO_LIBS)
|
|
|
|
|
|
|
|
test_fuzz_addrman_deserialize_SOURCES = $(FUZZ_SUITE) test/test_bitcoin_fuzzy.cpp
|
|
|
|
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)
|
|
|
|
test_fuzz_addrman_deserialize_LDADD = \
|
|
|
|
$(LIBUNIVALUE) \
|
|
|
|
$(LIBBITCOIN_SERVER) \
|
|
|
|
$(LIBBITCOIN_COMMON) \
|
|
|
|
$(LIBBITCOIN_UTIL) \
|
|
|
|
$(LIBBITCOIN_CONSENSUS) \
|
|
|
|
$(LIBBITCOIN_CRYPTO) \
|
|
|
|
$(LIBBITCOIN_CRYPTO_SSE41) \
|
|
|
|
$(LIBBITCOIN_CRYPTO_AVX2) \
|
|
|
|
$(LIBBITCOIN_CRYPTO_SHANI) \
|
|
|
|
$(LIBSECP256K1)
|
|
|
|
test_fuzz_addrman_deserialize_LDADD += $(BOOST_LIBS) $(CRYPTO_LIBS)
|
|
|
|
|
|
|
|
test_fuzz_blockheader_deserialize_SOURCES = $(FUZZ_SUITE) test/test_bitcoin_fuzzy.cpp
|
|
|
|
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)
|
|
|
|
test_fuzz_blockheader_deserialize_LDADD = \
|
|
|
|
$(LIBUNIVALUE) \
|
|
|
|
$(LIBBITCOIN_SERVER) \
|
|
|
|
$(LIBBITCOIN_COMMON) \
|
|
|
|
$(LIBBITCOIN_UTIL) \
|
|
|
|
$(LIBBITCOIN_CONSENSUS) \
|
|
|
|
$(LIBBITCOIN_CRYPTO) \
|
|
|
|
$(LIBBITCOIN_CRYPTO_SSE41) \
|
|
|
|
$(LIBBITCOIN_CRYPTO_AVX2) \
|
|
|
|
$(LIBBITCOIN_CRYPTO_SHANI) \
|
|
|
|
$(LIBSECP256K1)
|
|
|
|
test_fuzz_blockheader_deserialize_LDADD += $(BOOST_LIBS) $(CRYPTO_LIBS)
|
|
|
|
|
|
|
|
test_fuzz_banentry_deserialize_SOURCES = $(FUZZ_SUITE) test/test_bitcoin_fuzzy.cpp
|
|
|
|
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)
|
|
|
|
test_fuzz_banentry_deserialize_LDADD = \
|
|
|
|
$(LIBUNIVALUE) \
|
|
|
|
$(LIBBITCOIN_SERVER) \
|
|
|
|
$(LIBBITCOIN_COMMON) \
|
|
|
|
$(LIBBITCOIN_UTIL) \
|
|
|
|
$(LIBBITCOIN_CONSENSUS) \
|
|
|
|
$(LIBBITCOIN_CRYPTO) \
|
|
|
|
$(LIBBITCOIN_CRYPTO_SSE41) \
|
|
|
|
$(LIBBITCOIN_CRYPTO_AVX2) \
|
|
|
|
$(LIBBITCOIN_CRYPTO_SHANI) \
|
|
|
|
$(LIBSECP256K1)
|
|
|
|
test_fuzz_banentry_deserialize_LDADD += $(BOOST_LIBS) $(CRYPTO_LIBS)
|
|
|
|
|
|
|
|
test_fuzz_txundo_deserialize_SOURCES = $(FUZZ_SUITE) test/test_bitcoin_fuzzy.cpp
|
|
|
|
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)
|
|
|
|
test_fuzz_txundo_deserialize_LDADD = \
|
|
|
|
$(LIBUNIVALUE) \
|
|
|
|
$(LIBBITCOIN_SERVER) \
|
|
|
|
$(LIBBITCOIN_COMMON) \
|
|
|
|
$(LIBBITCOIN_UTIL) \
|
|
|
|
$(LIBBITCOIN_CONSENSUS) \
|
|
|
|
$(LIBBITCOIN_CRYPTO) \
|
|
|
|
$(LIBBITCOIN_CRYPTO_SSE41) \
|
|
|
|
$(LIBBITCOIN_CRYPTO_AVX2) \
|
|
|
|
$(LIBBITCOIN_CRYPTO_SHANI) \
|
|
|
|
$(LIBSECP256K1)
|
|
|
|
test_fuzz_txundo_deserialize_LDADD += $(BOOST_LIBS) $(CRYPTO_LIBS)
|
|
|
|
|
|
|
|
test_fuzz_blockundo_deserialize_SOURCES = $(FUZZ_SUITE) test/test_bitcoin_fuzzy.cpp
|
|
|
|
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)
|
|
|
|
test_fuzz_blockundo_deserialize_LDADD = \
|
|
|
|
$(LIBUNIVALUE) \
|
|
|
|
$(LIBBITCOIN_SERVER) \
|
|
|
|
$(LIBBITCOIN_COMMON) \
|
|
|
|
$(LIBBITCOIN_UTIL) \
|
|
|
|
$(LIBBITCOIN_CONSENSUS) \
|
|
|
|
$(LIBBITCOIN_CRYPTO) \
|
|
|
|
$(LIBBITCOIN_CRYPTO_SSE41) \
|
|
|
|
$(LIBBITCOIN_CRYPTO_AVX2) \
|
|
|
|
$(LIBBITCOIN_CRYPTO_SHANI) \
|
|
|
|
$(LIBSECP256K1)
|
|
|
|
test_fuzz_blockundo_deserialize_LDADD += $(BOOST_LIBS) $(CRYPTO_LIBS)
|
|
|
|
|
|
|
|
test_fuzz_coins_deserialize_SOURCES = $(FUZZ_SUITE) test/test_bitcoin_fuzzy.cpp
|
|
|
|
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)
|
|
|
|
test_fuzz_coins_deserialize_LDADD = \
|
|
|
|
$(LIBUNIVALUE) \
|
|
|
|
$(LIBBITCOIN_SERVER) \
|
|
|
|
$(LIBBITCOIN_COMMON) \
|
|
|
|
$(LIBBITCOIN_UTIL) \
|
|
|
|
$(LIBBITCOIN_CONSENSUS) \
|
|
|
|
$(LIBBITCOIN_CRYPTO) \
|
|
|
|
$(LIBBITCOIN_CRYPTO_SSE41) \
|
|
|
|
$(LIBBITCOIN_CRYPTO_AVX2) \
|
|
|
|
$(LIBBITCOIN_CRYPTO_SHANI) \
|
|
|
|
$(LIBSECP256K1)
|
|
|
|
test_fuzz_coins_deserialize_LDADD += $(BOOST_LIBS) $(CRYPTO_LIBS)
|
|
|
|
|
|
|
|
test_fuzz_netaddr_deserialize_SOURCES = $(FUZZ_SUITE) test/test_bitcoin_fuzzy.cpp
|
|
|
|
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)
|
|
|
|
test_fuzz_netaddr_deserialize_LDADD = \
|
|
|
|
$(LIBUNIVALUE) \
|
|
|
|
$(LIBBITCOIN_SERVER) \
|
|
|
|
$(LIBBITCOIN_COMMON) \
|
|
|
|
$(LIBBITCOIN_UTIL) \
|
|
|
|
$(LIBBITCOIN_CONSENSUS) \
|
|
|
|
$(LIBBITCOIN_CRYPTO) \
|
|
|
|
$(LIBBITCOIN_CRYPTO_SSE41) \
|
|
|
|
$(LIBBITCOIN_CRYPTO_AVX2) \
|
|
|
|
$(LIBBITCOIN_CRYPTO_SHANI) \
|
|
|
|
$(LIBSECP256K1)
|
|
|
|
test_fuzz_netaddr_deserialize_LDADD += $(BOOST_LIBS) $(CRYPTO_LIBS)
|
|
|
|
|
|
|
|
test_fuzz_service_deserialize_SOURCES = $(FUZZ_SUITE) test/test_bitcoin_fuzzy.cpp
|
|
|
|
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)
|
|
|
|
test_fuzz_service_deserialize_LDADD = \
|
|
|
|
$(LIBUNIVALUE) \
|
|
|
|
$(LIBBITCOIN_SERVER) \
|
|
|
|
$(LIBBITCOIN_COMMON) \
|
|
|
|
$(LIBBITCOIN_UTIL) \
|
|
|
|
$(LIBBITCOIN_CONSENSUS) \
|
|
|
|
$(LIBBITCOIN_CRYPTO) \
|
|
|
|
$(LIBBITCOIN_CRYPTO_SSE41) \
|
|
|
|
$(LIBBITCOIN_CRYPTO_AVX2) \
|
|
|
|
$(LIBBITCOIN_CRYPTO_SHANI) \
|
|
|
|
$(LIBSECP256K1)
|
|
|
|
test_fuzz_service_deserialize_LDADD += $(BOOST_LIBS) $(CRYPTO_LIBS)
|
|
|
|
|
|
|
|
test_fuzz_messageheader_deserialize_SOURCES = $(FUZZ_SUITE) test/test_bitcoin_fuzzy.cpp
|
|
|
|
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)
|
|
|
|
test_fuzz_messageheader_deserialize_LDADD = \
|
|
|
|
$(LIBUNIVALUE) \
|
|
|
|
$(LIBBITCOIN_SERVER) \
|
|
|
|
$(LIBBITCOIN_COMMON) \
|
|
|
|
$(LIBBITCOIN_UTIL) \
|
|
|
|
$(LIBBITCOIN_CONSENSUS) \
|
|
|
|
$(LIBBITCOIN_CRYPTO) \
|
|
|
|
$(LIBBITCOIN_CRYPTO_SSE41) \
|
|
|
|
$(LIBBITCOIN_CRYPTO_AVX2) \
|
|
|
|
$(LIBBITCOIN_CRYPTO_SHANI) \
|
|
|
|
$(LIBSECP256K1)
|
|
|
|
test_fuzz_messageheader_deserialize_LDADD += $(BOOST_LIBS) $(CRYPTO_LIBS)
|
|
|
|
|
|
|
|
test_fuzz_address_deserialize_SOURCES = $(FUZZ_SUITE) test/test_bitcoin_fuzzy.cpp
|
|
|
|
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)
|
|
|
|
test_fuzz_address_deserialize_LDADD = \
|
|
|
|
$(LIBUNIVALUE) \
|
|
|
|
$(LIBBITCOIN_SERVER) \
|
|
|
|
$(LIBBITCOIN_COMMON) \
|
|
|
|
$(LIBBITCOIN_UTIL) \
|
|
|
|
$(LIBBITCOIN_CONSENSUS) \
|
|
|
|
$(LIBBITCOIN_CRYPTO) \
|
|
|
|
$(LIBBITCOIN_CRYPTO_SSE41) \
|
|
|
|
$(LIBBITCOIN_CRYPTO_AVX2) \
|
|
|
|
$(LIBBITCOIN_CRYPTO_SHANI) \
|
|
|
|
$(LIBSECP256K1)
|
|
|
|
test_fuzz_address_deserialize_LDADD += $(BOOST_LIBS) $(CRYPTO_LIBS)
|
|
|
|
|
|
|
|
test_fuzz_inv_deserialize_SOURCES = $(FUZZ_SUITE) test/test_bitcoin_fuzzy.cpp
|
|
|
|
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)
|
|
|
|
test_fuzz_inv_deserialize_LDADD = \
|
|
|
|
$(LIBUNIVALUE) \
|
|
|
|
$(LIBBITCOIN_SERVER) \
|
|
|
|
$(LIBBITCOIN_COMMON) \
|
|
|
|
$(LIBBITCOIN_UTIL) \
|
|
|
|
$(LIBBITCOIN_CONSENSUS) \
|
|
|
|
$(LIBBITCOIN_CRYPTO) \
|
|
|
|
$(LIBBITCOIN_CRYPTO_SSE41) \
|
|
|
|
$(LIBBITCOIN_CRYPTO_AVX2) \
|
|
|
|
$(LIBBITCOIN_CRYPTO_SHANI) \
|
|
|
|
$(LIBSECP256K1)
|
|
|
|
test_fuzz_inv_deserialize_LDADD += $(BOOST_LIBS) $(CRYPTO_LIBS)
|
|
|
|
|
|
|
|
test_fuzz_bloomfilter_deserialize_SOURCES = $(FUZZ_SUITE) test/test_bitcoin_fuzzy.cpp
|
|
|
|
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)
|
|
|
|
test_fuzz_bloomfilter_deserialize_LDADD = \
|
|
|
|
$(LIBUNIVALUE) \
|
|
|
|
$(LIBBITCOIN_SERVER) \
|
|
|
|
$(LIBBITCOIN_COMMON) \
|
|
|
|
$(LIBBITCOIN_UTIL) \
|
|
|
|
$(LIBBITCOIN_CONSENSUS) \
|
|
|
|
$(LIBBITCOIN_CRYPTO) \
|
|
|
|
$(LIBBITCOIN_CRYPTO_SSE41) \
|
|
|
|
$(LIBBITCOIN_CRYPTO_AVX2) \
|
|
|
|
$(LIBBITCOIN_CRYPTO_SHANI) \
|
|
|
|
$(LIBSECP256K1)
|
|
|
|
test_fuzz_bloomfilter_deserialize_LDADD += $(BOOST_LIBS) $(CRYPTO_LIBS)
|
|
|
|
|
|
|
|
test_fuzz_diskblockindex_deserialize_SOURCES = $(FUZZ_SUITE) test/test_bitcoin_fuzzy.cpp
|
|
|
|
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)
|
|
|
|
test_fuzz_diskblockindex_deserialize_LDADD = \
|
|
|
|
$(LIBUNIVALUE) \
|
|
|
|
$(LIBBITCOIN_SERVER) \
|
|
|
|
$(LIBBITCOIN_COMMON) \
|
|
|
|
$(LIBBITCOIN_UTIL) \
|
|
|
|
$(LIBBITCOIN_CONSENSUS) \
|
|
|
|
$(LIBBITCOIN_CRYPTO) \
|
|
|
|
$(LIBBITCOIN_CRYPTO_SSE41) \
|
|
|
|
$(LIBBITCOIN_CRYPTO_AVX2) \
|
|
|
|
$(LIBBITCOIN_CRYPTO_SHANI) \
|
|
|
|
$(LIBSECP256K1)
|
|
|
|
test_fuzz_diskblockindex_deserialize_LDADD += $(BOOST_LIBS) $(CRYPTO_LIBS)
|
|
|
|
|
|
|
|
test_fuzz_txoutcompressor_deserialize_SOURCES = $(FUZZ_SUITE) test/test_bitcoin_fuzzy.cpp
|
|
|
|
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)
|
|
|
|
test_fuzz_txoutcompressor_deserialize_LDADD = \
|
|
|
|
$(LIBUNIVALUE) \
|
|
|
|
$(LIBBITCOIN_SERVER) \
|
|
|
|
$(LIBBITCOIN_COMMON) \
|
|
|
|
$(LIBBITCOIN_UTIL) \
|
|
|
|
$(LIBBITCOIN_CONSENSUS) \
|
|
|
|
$(LIBBITCOIN_CRYPTO) \
|
|
|
|
$(LIBBITCOIN_CRYPTO_SSE41) \
|
|
|
|
$(LIBBITCOIN_CRYPTO_AVX2) \
|
|
|
|
$(LIBBITCOIN_CRYPTO_SHANI) \
|
|
|
|
$(LIBSECP256K1)
|
|
|
|
test_fuzz_txoutcompressor_deserialize_LDADD += $(BOOST_LIBS) $(CRYPTO_LIBS)
|
|
|
|
|
|
|
|
test_fuzz_blocktransactions_deserialize_SOURCES = $(FUZZ_SUITE) test/test_bitcoin_fuzzy.cpp
|
|
|
|
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)
|
|
|
|
test_fuzz_blocktransactions_deserialize_LDADD = \
|
|
|
|
$(LIBUNIVALUE) \
|
|
|
|
$(LIBBITCOIN_SERVER) \
|
|
|
|
$(LIBBITCOIN_COMMON) \
|
|
|
|
$(LIBBITCOIN_UTIL) \
|
|
|
|
$(LIBBITCOIN_CONSENSUS) \
|
|
|
|
$(LIBBITCOIN_CRYPTO) \
|
|
|
|
$(LIBBITCOIN_CRYPTO_SSE41) \
|
|
|
|
$(LIBBITCOIN_CRYPTO_AVX2) \
|
|
|
|
$(LIBBITCOIN_CRYPTO_SHANI) \
|
|
|
|
$(LIBSECP256K1)
|
|
|
|
test_fuzz_blocktransactions_deserialize_LDADD += $(BOOST_LIBS) $(CRYPTO_LIBS)
|
|
|
|
|
|
|
|
test_fuzz_blocktransactionsrequest_deserialize_SOURCES = $(FUZZ_SUITE) test/test_bitcoin_fuzzy.cpp
|
|
|
|
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)
|
|
|
|
test_fuzz_blocktransactionsrequest_deserialize_LDADD = \
|
|
|
|
$(LIBUNIVALUE) \
|
|
|
|
$(LIBBITCOIN_SERVER) \
|
|
|
|
$(LIBBITCOIN_COMMON) \
|
|
|
|
$(LIBBITCOIN_UTIL) \
|
|
|
|
$(LIBBITCOIN_CONSENSUS) \
|
|
|
|
$(LIBBITCOIN_CRYPTO) \
|
|
|
|
$(LIBBITCOIN_CRYPTO_SSE41) \
|
|
|
|
$(LIBBITCOIN_CRYPTO_AVX2) \
|
|
|
|
$(LIBBITCOIN_CRYPTO_SHANI) \
|
|
|
|
$(LIBSECP256K1)
|
|
|
|
test_fuzz_blocktransactionsrequest_deserialize_LDADD += $(BOOST_LIBS) $(CRYPTO_LIBS)
|
|
|
|
endif # ENABLE_FUZZ
|
2014-11-18 18:06:32 +01:00
|
|
|
|
2014-05-28 19:38:41 +02:00
|
|
|
nodist_test_test_bitcoin_SOURCES = $(GENERATED_TEST_FILES)
|
|
|
|
|
|
|
|
$(BITCOIN_TESTS): $(GENERATED_TEST_FILES)
|
|
|
|
|
2018-10-10 04:31:51 +02:00
|
|
|
CLEAN_BITCOIN_TEST = test/*.gcda test/*.gcno $(GENERATED_TEST_FILES) $(BITCOIN_TESTS:=.log)
|
2014-05-28 19:38:41 +02:00
|
|
|
|
|
|
|
CLEANFILES += $(CLEAN_BITCOIN_TEST)
|
|
|
|
|
2018-08-28 13:50:41 +02:00
|
|
|
if TARGET_WINDOWS
|
2014-05-28 19:38:41 +02: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 19:38:41 +02: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 23:13:03 +02:00
|
|
|
|
2018-04-10 01:56:25 +02:00
|
|
|
check-local: $(BITCOIN_TESTS:.cpp=.cpp.test)
|
2018-01-23 04:53:26 +01:00
|
|
|
if BUILD_BITCOIN_TX
|
2017-03-08 23:46:18 +01: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 04:53:26 +01:00
|
|
|
endif
|
2018-04-23 09:39:12 +02: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-06 02:56:45 +01:00
|
|
|
$(AM_V_at)$(MAKE) $(AM_MAKEFLAGS) -C secp256k1 check
|
2016-01-14 01:26:23 +01:00
|
|
|
if EMBEDDED_UNIVALUE
|
2015-09-04 16:11:34 +02:00
|
|
|
$(AM_V_at)$(MAKE) $(AM_MAKEFLAGS) -C univalue check
|
2016-01-14 01:26:23 +01:00
|
|
|
endif
|
2014-11-06 02:56:45 +01:00
|
|
|
|
2018-04-10 01:56:25 +02: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-10 01:56:25 +02:00
|
|
|
|
2014-06-04 23:13:03 +02:00
|
|
|
%.json.h: %.json
|
|
|
|
@$(MKDIR_P) $(@D)
|
2016-11-12 08:15:02 +01: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 23:13:03 +02:00
|
|
|
@echo "Generated $@"
|