Makefile.test.include 4.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145
  1. TESTS += test/test_bitcoin
  2. bin_PROGRAMS += test/test_bitcoin
  3. TEST_SRCDIR = test
  4. TEST_BINARY=test/test_bitcoin$(EXEEXT)
  5. EXTRA_DIST += \
  6. test/bctest.py \
  7. test/bitcoin-util-test.py \
  8. test/data/bitcoin-util-test.json \
  9. test/data/blanktx.hex \
  10. test/data/tt-delin1-out.hex \
  11. test/data/tt-delout1-out.hex \
  12. test/data/tt-locktime317000-out.hex \
  13. test/data/tx394b54bb.hex \
  14. test/data/txcreate1.hex \
  15. test/data/txcreate2.hex \
  16. test/data/txcreatesign.hex
  17. JSON_TEST_FILES = \
  18. test/data/script_valid.json \
  19. test/data/base58_keys_valid.json \
  20. test/data/base58_encode_decode.json \
  21. test/data/base58_keys_invalid.json \
  22. test/data/script_invalid.json \
  23. test/data/tx_invalid.json \
  24. test/data/tx_valid.json \
  25. test/data/sighash.json \
  26. test/data/merkle_roots.json \
  27. test/data/merkle_roots_empty.json \
  28. test/data/merkle_serialization.json \
  29. test/data/merkle_witness_serialization.json \
  30. test/data/merkle_path.json \
  31. test/data/g1_compressed.json \
  32. test/data/g2_compressed.json
  33. RAW_TEST_FILES = test/data/alertTests.raw
  34. GENERATED_TEST_FILES = $(JSON_TEST_FILES:.json=.json.h) $(RAW_TEST_FILES:.raw=.raw.h)
  35. BITCOIN_TESTS =\
  36. test/arith_uint256_tests.cpp \
  37. test/bignum.h \
  38. test/addrman_tests.cpp \
  39. test/alert_tests.cpp \
  40. test/allocator_tests.cpp \
  41. test/base32_tests.cpp \
  42. test/base58_tests.cpp \
  43. test/base64_tests.cpp \
  44. test/bip32_tests.cpp \
  45. test/bloom_tests.cpp \
  46. test/checkblock_tests.cpp \
  47. test/Checkpoints_tests.cpp \
  48. test/coins_tests.cpp \
  49. test/compress_tests.cpp \
  50. test/crypto_tests.cpp \
  51. test/DoS_tests.cpp \
  52. test/equihash_tests.cpp \
  53. test/getarg_tests.cpp \
  54. test/hash_tests.cpp \
  55. test/key_tests.cpp \
  56. test/main_tests.cpp \
  57. test/mempool_tests.cpp \
  58. test/miner_tests.cpp \
  59. test/mruset_tests.cpp \
  60. test/multisig_tests.cpp \
  61. test/netbase_tests.cpp \
  62. test/pmt_tests.cpp \
  63. test/policyestimator_tests.cpp \
  64. test/pow_tests.cpp \
  65. test/reverselock_tests.cpp \
  66. test/rpc_tests.cpp \
  67. test/sanity_tests.cpp \
  68. test/scheduler_tests.cpp \
  69. test/script_P2SH_tests.cpp \
  70. test/script_tests.cpp \
  71. test/scriptnum_tests.cpp \
  72. test/serialize_tests.cpp \
  73. test/sighash_tests.cpp \
  74. test/sigopcount_tests.cpp \
  75. test/skiplist_tests.cpp \
  76. test/test_bitcoin.cpp \
  77. test/test_bitcoin.h \
  78. test/timedata_tests.cpp \
  79. test/transaction_tests.cpp \
  80. test/uint256_tests.cpp \
  81. test/univalue_tests.cpp \
  82. test/util_tests.cpp \
  83. test/sha256compress_tests.cpp
  84. if ENABLE_WALLET
  85. BITCOIN_TESTS += \
  86. test/accounting_tests.cpp \
  87. wallet/test/wallet_tests.cpp \
  88. test/rpc_wallet_tests.cpp
  89. endif
  90. test_test_bitcoin_SOURCES = $(BITCOIN_TESTS) $(JSON_TEST_FILES) $(RAW_TEST_FILES)
  91. test_test_bitcoin_CPPFLAGS = -fopenmp $(BITCOIN_INCLUDES) -I$(builddir)/test/ $(TESTDEFS)
  92. test_test_bitcoin_LDADD = $(LIBBITCOIN_SERVER) $(LIBBITCOIN_CLI) $(LIBBITCOIN_COMMON) $(LIBBITCOIN_UTIL) $(LIBBITCOIN_CRYPTO) $(LIBBITCOIN_UNIVALUE) $(LIBLEVELDB) $(LIBMEMENV) \
  93. $(BOOST_LIBS) $(BOOST_UNIT_TEST_FRAMEWORK_LIB) $(LIBSECP256K1)
  94. if ENABLE_WALLET
  95. test_test_bitcoin_LDADD += $(LIBBITCOIN_WALLET)
  96. endif
  97. test_test_bitcoin_LDADD += $(LIBZCASH_CONSENSUS) $(BDB_LIBS) $(SSL_LIBS) $(CRYPTO_LIBS) $(MINIUPNPC_LIBS) $(LIBZCASH) $(LIBZCASH_LIBS)
  98. test_test_bitcoin_LDFLAGS = $(RELDFLAGS) $(AM_LDFLAGS) $(LIBTOOL_APP_LDFLAGS) -static
  99. nodist_test_test_bitcoin_SOURCES = $(GENERATED_TEST_FILES)
  100. $(BITCOIN_TESTS): $(GENERATED_TEST_FILES)
  101. CLEAN_BITCOIN_TEST = test/*.gcda test/*.gcno $(GENERATED_TEST_FILES)
  102. CLEANFILES += $(CLEAN_BITCOIN_TEST)
  103. bitcoin_test: $(TEST_BINARY)
  104. bitcoin_test_check: $(TEST_BINARY) FORCE
  105. $(MAKE) check-TESTS TESTS=$^
  106. bitcoin_test_clean : FORCE
  107. rm -f $(CLEAN_BITCOIN_TEST) $(test_test_bitcoin_OBJECTS) $(TEST_BINARY)
  108. check-local:
  109. @echo "Running test/bitcoin-util-test.py..."
  110. $(AM_V_at)srcdir=$(srcdir) PYTHONPATH=$(builddir)/test $(srcdir)/test/bitcoin-util-test.py
  111. $(AM_V_at)$(MAKE) $(AM_MAKEFLAGS) -C secp256k1 check
  112. %.json.h: %.json
  113. @$(MKDIR_P) $(@D)
  114. @echo "namespace json_tests{" > $@
  115. @echo "static unsigned const char $(*F)[] = {" >> $@
  116. @$(HEXDUMP) -v -e '8/1 "0x%02x, "' -e '"\n"' $< | $(SED) -e 's/0x ,//g' >> $@
  117. @echo "};};" >> $@
  118. @echo "Generated $@"
  119. %.raw.h: %.raw
  120. @$(MKDIR_P) $(@D)
  121. @echo "namespace alert_tests{" > $@
  122. @echo "static unsigned const char $(*F)[] = {" >> $@
  123. @$(HEXDUMP) -v -e '8/1 "0x%02x, "' -e '"\n"' $< | $(SED) -e 's/0x ,//g' >> $@
  124. @echo "};};" >> $@
  125. @echo "Generated $@"