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 \
|
2014-12-24 01:35:40 +00:00
|
|
|
test/data/txcreatesign.hex
|
2014-08-19 14:28:58 +00:00
|
|
|
|
2014-05-28 17:38:41 +00:00
|
|
|
JSON_TEST_FILES = \
|
|
|
|
test/data/script_valid.json \
|
|
|
|
test/data/base58_keys_valid.json \
|
|
|
|
test/data/base58_encode_decode.json \
|
|
|
|
test/data/base58_keys_invalid.json \
|
|
|
|
test/data/script_invalid.json \
|
|
|
|
test/data/tx_invalid.json \
|
|
|
|
test/data/tx_valid.json \
|
|
|
|
test/data/sighash.json
|
|
|
|
|
|
|
|
RAW_TEST_FILES = test/data/alertTests.raw
|
|
|
|
|
|
|
|
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 \
|
2014-05-28 17:38:41 +00:00
|
|
|
test/bignum.h \
|
2015-09-22 19:24:16 +00:00
|
|
|
test/addrman_tests.cpp \
|
2014-05-28 17:38:41 +00:00
|
|
|
test/alert_tests.cpp \
|
|
|
|
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 \
|
2014-05-28 17:38:41 +00:00
|
|
|
test/bloom_tests.cpp \
|
|
|
|
test/checkblock_tests.cpp \
|
|
|
|
test/Checkpoints_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 \
|
2014-05-28 17:38:41 +00:00
|
|
|
test/miner_tests.cpp \
|
|
|
|
test/mruset_tests.cpp \
|
|
|
|
test/multisig_tests.cpp \
|
|
|
|
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-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 \
|
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 \
|
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 += \
|
|
|
|
test/accounting_tests.cpp \
|
2015-02-03 20:09:47 +00:00
|
|
|
wallet/test/wallet_tests.cpp \
|
2014-05-28 17:38:41 +00:00
|
|
|
test/rpc_wallet_tests.cpp
|
|
|
|
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-09-04 14:11:34 +00:00
|
|
|
test_test_bitcoin_LDADD = $(LIBBITCOIN_SERVER) $(LIBBITCOIN_CLI) $(LIBBITCOIN_COMMON) $(LIBBITCOIN_UTIL) $(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)
|
|
|
|
|
|
|
|
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..."
|
|
|
|
$(AM_V_at)srcdir=$(srcdir) PYTHONPATH=$(builddir)/test $(srcdir)/test/bitcoin-util-test.py
|
2014-11-06 01:56:45 +00:00
|
|
|
$(AM_V_at)$(MAKE) $(AM_MAKEFLAGS) -C secp256k1 check
|
2015-09-04 14:11:34 +00:00
|
|
|
$(AM_V_at)$(MAKE) $(AM_MAKEFLAGS) -C univalue check
|
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 $@"
|