aboutsummaryrefslogtreecommitdiff
path: root/src/Makefile.test.include
diff options
context:
space:
mode:
Diffstat (limited to 'src/Makefile.test.include')
-rw-r--r--src/Makefile.test.include20
1 files changed, 18 insertions, 2 deletions
diff --git a/src/Makefile.test.include b/src/Makefile.test.include
index 7a5bb07b6..27b456240 100644
--- a/src/Makefile.test.include
+++ b/src/Makefile.test.include
@@ -13,6 +13,20 @@ EXTRA_DIST += \
test/bctest.py \
test/bitcoin-util-test.py \
test/data/bitcoin-util-test.json \
+ test/data/blanktxv1.json \
+ test/data/blanktxv2.json \
+ test/data/tt-delin1-out.json \
+ test/data/tt-delout1-out.json \
+ test/data/tt-locktime317000-out.json \
+ test/data/txcreate1.json \
+ test/data/txcreate2.json \
+ test/data/txcreatedata1.json \
+ test/data/txcreatedata2.json \
+ test/data/txcreatedata_seq0.json \
+ test/data/txcreatedata_seq1.json \
+ test/data/txcreatesignv1.json \
+ test/data/blanktxv1.hex \
+ test/data/blanktxv2.hex \
test/data/tt-delin1-out.hex \
test/data/tt-delout1-out.hex \
test/data/tt-locktime317000-out.hex \
@@ -22,6 +36,7 @@ EXTRA_DIST += \
test/data/txcreatedata1.hex \
test/data/txcreatedata2.hex \
test/data/txcreatesignv1.hex \
+ test/data/txcreatesignv2.hex \
test/data/txcreatedata_seq0.hex \
test/data/txcreatedata_seq1.hex
@@ -73,6 +88,7 @@ BITCOIN_TESTS =\
test/policyestimator_tests.cpp \
test/pow_tests.cpp \
test/prevector_tests.cpp \
+ test/raii_event_tests.cpp \
test/reverselock_tests.cpp \
test/rpc_tests.cpp \
test/sanity_tests.cpp \
@@ -108,9 +124,9 @@ BITCOIN_TESTS += \
endif
test_test_bitcoin_SOURCES = $(BITCOIN_TESTS) $(JSON_TEST_FILES) $(RAW_TEST_FILES)
-test_test_bitcoin_CPPFLAGS = $(AM_CPPFLAGS) $(BITCOIN_INCLUDES) -I$(builddir)/test/ $(TESTDEFS)
+test_test_bitcoin_CPPFLAGS = $(AM_CPPFLAGS) $(BITCOIN_INCLUDES) -I$(builddir)/test/ $(TESTDEFS) $(EVENT_CFLAGS)
test_test_bitcoin_LDADD = $(LIBBITCOIN_SERVER) $(LIBBITCOIN_CLI) $(LIBBITCOIN_COMMON) $(LIBBITCOIN_UTIL) $(LIBBITCOIN_CONSENSUS) $(LIBBITCOIN_CRYPTO) $(LIBUNIVALUE) $(LIBLEVELDB) $(LIBMEMENV) \
- $(BOOST_LIBS) $(BOOST_UNIT_TEST_FRAMEWORK_LIB) $(LIBSECP256K1)
+ $(BOOST_LIBS) $(BOOST_UNIT_TEST_FRAMEWORK_LIB) $(LIBSECP256K1) $(EVENT_LIBS)
test_test_bitcoin_CXXFLAGS = $(AM_CXXFLAGS) $(PIE_FLAGS)
if ENABLE_WALLET
test_test_bitcoin_LDADD += $(LIBBITCOIN_WALLET)