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