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.
|
|
|
|
|
2014-12-19 23:02:44 +00:00
|
|
|
TESTS += test/test_bitcoin
|
2014-05-28 17:38:41 +00:00
|
|
|
bin_PROGRAMS += test/test_bitcoin
|
|
|
|
TEST_SRCDIR = test
|
|
|
|
TEST_BINARY=test/test_bitcoin$(EXEEXT)
|
|
|
|
|
2014-08-19 14:28:58 +00:00
|
|
|
|
|
|
|
EXTRA_DIST += \
|
|
|
|
test/bctest.py \
|
|
|
|
test/bitcoin-util-test.py \
|
|
|
|
test/data/bitcoin-util-test.json \
|
2014-08-20 03:15:58 +00:00
|
|
|
test/data/blanktx.hex \
|
|
|
|
test/data/tt-delin1-out.hex \
|
|
|
|
test/data/tt-delout1-out.hex \
|
|
|
|
test/data/tt-locktime317000-out.hex \
|
|
|
|
test/data/tx394b54bb.hex \
|
2014-09-14 06:01:51 +00:00
|
|
|
test/data/txcreate1.hex \
|
2014-12-24 01:35:40 +00:00
|
|
|
test/data/txcreate2.hex \
|
2015-06-29 18:14:43 +00:00
|
|
|
test/data/txcreatedata1.hex \
|
|
|
|
test/data/txcreatedata2.hex \
|
2016-06-07 17:57:54 +00:00
|
|
|
test/data/txcreatesign.hex \
|
|
|
|
test/data/txcreatedata_seq0.hex \
|
|
|
|
test/data/txcreatedata_seq1.hex
|
2014-08-19 14:28:58 +00:00
|
|
|
|
2014-05-28 17:38:41 +00:00
|
|
|
JSON_TEST_FILES = \
|
2016-04-05 14:11:47 +00:00
|
|
|
test/data/script_tests.json \
|
2014-05-28 17:38:41 +00:00
|
|
|
test/data/base58_keys_valid.json \
|
|
|
|
test/data/base58_encode_decode.json \
|
|
|
|
test/data/base58_keys_invalid.json \
|
|
|
|
test/data/tx_invalid.json \
|
|
|
|
test/data/tx_valid.json \
|
|
|
|
test/data/sighash.json
|
|
|
|
|
2016-03-07 19:44:09 +00:00
|
|
|
RAW_TEST_FILES =
|
2014-05-28 17:38:41 +00:00
|
|
|
|
|
|
|
GENERATED_TEST_FILES = $(JSON_TEST_FILES:.json=.json.h) $(RAW_TEST_FILES:.raw=.raw.h)
|
|
|
|
|
|
|
|
BITCOIN_TESTS =\
|
2014-12-15 09:22:19 +00:00
|
|
|
test/arith_uint256_tests.cpp \
|
2015-11-25 12:19:48 +00:00
|
|
|
test/scriptnum10.h \
|
2015-09-22 19:24:16 +00:00
|
|
|
test/addrman_tests.cpp \
|
2016-03-17 15:47:15 +00:00
|
|
|
test/amount_tests.cpp \
|
2014-05-28 17:38:41 +00:00
|
|
|
test/allocator_tests.cpp \
|
|
|
|
test/base32_tests.cpp \
|
|
|
|
test/base58_tests.cpp \
|
|
|
|
test/base64_tests.cpp \
|
2015-04-23 11:20:18 +00:00
|
|
|
test/bip32_tests.cpp \
|
2016-04-25 22:51:08 +00:00
|
|
|
test/blockencodings_tests.cpp \
|
2014-05-28 17:38:41 +00:00
|
|
|
test/bloom_tests.cpp \
|
2014-09-16 23:27:06 +00:00
|
|
|
test/coins_tests.cpp \
|
2014-10-31 08:36:30 +00:00
|
|
|
test/compress_tests.cpp \
|
2014-05-31 20:01:42 +00:00
|
|
|
test/crypto_tests.cpp \
|
2014-05-28 17:38:41 +00:00
|
|
|
test/DoS_tests.cpp \
|
|
|
|
test/getarg_tests.cpp \
|
2014-04-20 15:36:25 +00:00
|
|
|
test/hash_tests.cpp \
|
2014-05-28 17:38:41 +00:00
|
|
|
test/key_tests.cpp \
|
2015-08-17 16:07:47 +00:00
|
|
|
test/limitedmap_tests.cpp \
|
2015-10-23 01:33:06 +00:00
|
|
|
test/dbwrapper_tests.cpp \
|
2014-05-28 17:38:41 +00:00
|
|
|
test/main_tests.cpp \
|
2015-03-25 17:13:09 +00:00
|
|
|
test/mempool_tests.cpp \
|
2015-11-17 16:35:44 +00:00
|
|
|
test/merkle_tests.cpp \
|
2014-05-28 17:38:41 +00:00
|
|
|
test/miner_tests.cpp \
|
|
|
|
test/multisig_tests.cpp \
|
2016-03-16 16:54:30 +00:00
|
|
|
test/net_tests.cpp \
|
2014-05-28 17:38:41 +00:00
|
|
|
test/netbase_tests.cpp \
|
|
|
|
test/pmt_tests.cpp \
|
2014-08-26 20:28:32 +00:00
|
|
|
test/policyestimator_tests.cpp \
|
2015-02-21 12:57:44 +00:00
|
|
|
test/pow_tests.cpp \
|
2015-10-29 06:11:24 +00:00
|
|
|
test/prevector_tests.cpp \
|
2015-09-03 16:53:00 +00:00
|
|
|
test/reverselock_tests.cpp \
|
2014-05-28 17:38:41 +00:00
|
|
|
test/rpc_tests.cpp \
|
2015-01-06 02:39:40 +00:00
|
|
|
test/sanity_tests.cpp \
|
2015-04-10 14:31:02 +00:00
|
|
|
test/scheduler_tests.cpp \
|
2014-05-28 17:38:41 +00:00
|
|
|
test/script_P2SH_tests.cpp \
|
|
|
|
test/script_tests.cpp \
|
2014-10-31 08:36:30 +00:00
|
|
|
test/scriptnum_tests.cpp \
|
2014-05-28 17:38:41 +00:00
|
|
|
test/serialize_tests.cpp \
|
2014-10-31 08:36:30 +00:00
|
|
|
test/sighash_tests.cpp \
|
2014-05-28 17:38:41 +00:00
|
|
|
test/sigopcount_tests.cpp \
|
2014-06-29 13:26:58 +00:00
|
|
|
test/skiplist_tests.cpp \
|
2015-09-07 22:22:23 +00:00
|
|
|
test/streams_tests.cpp \
|
2014-05-28 17:38:41 +00:00
|
|
|
test/test_bitcoin.cpp \
|
2015-03-03 15:49:12 +00:00
|
|
|
test/test_bitcoin.h \
|
2016-11-07 14:04:57 +00:00
|
|
|
test/test_random.h \
|
2016-03-11 15:04:05 +00:00
|
|
|
test/testutil.cpp \
|
|
|
|
test/testutil.h \
|
2014-08-20 11:53:42 +00:00
|
|
|
test/timedata_tests.cpp \
|
2014-05-28 17:38:41 +00:00
|
|
|
test/transaction_tests.cpp \
|
2015-03-03 14:59:32 +00:00
|
|
|
test/txvalidationcache_tests.cpp \
|
2016-02-20 01:57:36 +00:00
|
|
|
test/versionbits_tests.cpp \
|
2014-12-16 14:50:31 +00:00
|
|
|
test/uint256_tests.cpp \
|
2014-08-20 04:28:46 +00:00
|
|
|
test/univalue_tests.cpp \
|
2014-10-31 08:36:30 +00:00
|
|
|
test/util_tests.cpp
|
2014-05-28 17:38:41 +00:00
|
|
|
|
|
|
|
if ENABLE_WALLET
|
|
|
|
BITCOIN_TESTS += \
|
2016-04-18 12:54:57 +00:00
|
|
|
wallet/test/wallet_test_fixture.cpp \
|
|
|
|
wallet/test/wallet_test_fixture.h \
|
2016-04-18 12:03:53 +00:00
|
|
|
wallet/test/accounting_tests.cpp \
|
2015-02-03 20:09:47 +00:00
|
|
|
wallet/test/wallet_tests.cpp \
|
2016-08-03 23:37:02 +00:00
|
|
|
wallet/test/crypto_tests.cpp
|
2014-05-28 17:38:41 +00:00
|
|
|
endif
|
|
|
|
|
|
|
|
test_test_bitcoin_SOURCES = $(BITCOIN_TESTS) $(JSON_TEST_FILES) $(RAW_TEST_FILES)
|
2015-11-10 01:50:25 +00:00
|
|
|
test_test_bitcoin_CPPFLAGS = $(AM_CPPFLAGS) $(BITCOIN_INCLUDES) -I$(builddir)/test/ $(TESTDEFS)
|
2015-11-20 15:46:03 +00:00
|
|
|
test_test_bitcoin_LDADD = $(LIBBITCOIN_SERVER) $(LIBBITCOIN_CLI) $(LIBBITCOIN_COMMON) $(LIBBITCOIN_UTIL) $(LIBBITCOIN_CONSENSUS) $(LIBBITCOIN_CRYPTO) $(LIBUNIVALUE) $(LIBLEVELDB) $(LIBMEMENV) \
|
2014-11-05 15:58:37 +00:00
|
|
|
$(BOOST_LIBS) $(BOOST_UNIT_TEST_FRAMEWORK_LIB) $(LIBSECP256K1)
|
2015-11-10 01:50:25 +00:00
|
|
|
test_test_bitcoin_CXXFLAGS = $(AM_CXXFLAGS) $(PIE_FLAGS)
|
2014-05-28 17:38:41 +00:00
|
|
|
if ENABLE_WALLET
|
|
|
|
test_test_bitcoin_LDADD += $(LIBBITCOIN_WALLET)
|
|
|
|
endif
|
2014-06-06 14:57:28 +00:00
|
|
|
|
2014-11-07 03:43:19 +00:00
|
|
|
test_test_bitcoin_LDADD += $(LIBBITCOIN_CONSENSUS) $(BDB_LIBS) $(SSL_LIBS) $(CRYPTO_LIBS) $(MINIUPNPC_LIBS)
|
2014-11-20 18:40:01 +00:00
|
|
|
test_test_bitcoin_LDFLAGS = $(RELDFLAGS) $(AM_LDFLAGS) $(LIBTOOL_APP_LDFLAGS) -static
|
2014-05-28 17:38:41 +00:00
|
|
|
|
2014-11-18 17:06:32 +00:00
|
|
|
if ENABLE_ZMQ
|
|
|
|
test_test_bitcoin_LDADD += $(ZMQ_LIBS)
|
|
|
|
endif
|
|
|
|
|
2014-05-28 17:38:41 +00:00
|
|
|
nodist_test_test_bitcoin_SOURCES = $(GENERATED_TEST_FILES)
|
|
|
|
|
|
|
|
$(BITCOIN_TESTS): $(GENERATED_TEST_FILES)
|
|
|
|
|
|
|
|
CLEAN_BITCOIN_TEST = test/*.gcda test/*.gcno $(GENERATED_TEST_FILES)
|
|
|
|
|
|
|
|
CLEANFILES += $(CLEAN_BITCOIN_TEST)
|
|
|
|
|
2016-06-03 18:00:38 +00:00
|
|
|
# This file is problematic for out-of-tree builds if it exists.
|
|
|
|
DISTCLEANFILES += test/buildenv.pyc
|
|
|
|
|
2014-05-28 17:38:41 +00:00
|
|
|
bitcoin_test: $(TEST_BINARY)
|
|
|
|
|
|
|
|
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 21:13:03 +00:00
|
|
|
|
2014-11-06 01:56:45 +00:00
|
|
|
check-local:
|
2014-12-19 23:02:44 +00:00
|
|
|
@echo "Running test/bitcoin-util-test.py..."
|
2016-03-20 17:51:52 +00:00
|
|
|
$(AM_V_at)srcdir=$(srcdir) PYTHONPATH=$(builddir)/test $(PYTHON) $(srcdir)/test/bitcoin-util-test.py
|
2014-11-06 01:56:45 +00:00
|
|
|
$(AM_V_at)$(MAKE) $(AM_MAKEFLAGS) -C secp256k1 check
|
2016-01-14 00:26:23 +00:00
|
|
|
if EMBEDDED_UNIVALUE
|
2015-09-04 14:11:34 +00:00
|
|
|
$(AM_V_at)$(MAKE) $(AM_MAKEFLAGS) -C univalue check
|
2016-01-14 00:26:23 +00:00
|
|
|
endif
|
2014-11-06 01:56:45 +00:00
|
|
|
|
2014-06-04 21:13:03 +00:00
|
|
|
%.json.h: %.json
|
|
|
|
@$(MKDIR_P) $(@D)
|
|
|
|
@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 "};};" >> $@
|
|
|
|
@echo "Generated $@"
|
|
|
|
|
|
|
|
%.raw.h: %.raw
|
|
|
|
@$(MKDIR_P) $(@D)
|
|
|
|
@echo "namespace alert_tests{" > $@
|
|
|
|
@echo "static unsigned const char $(*F)[] = {" >> $@
|
|
|
|
@$(HEXDUMP) -v -e '8/1 "0x%02x, "' -e '"\n"' $< | $(SED) -e 's/0x ,//g' >> $@
|
|
|
|
@echo "};};" >> $@
|
|
|
|
@echo "Generated $@"
|