]> Git Repo - VerusCoin.git/blob - src/Makefile.gtest.include
merge jl777/dev; zcash upgrade, CC to fix
[VerusCoin.git] / src / Makefile.gtest.include
1
2 TESTS += komodo-gtest
3 bin_PROGRAMS += komodo-gtest
4
5 # tool for generating our public parameters
6 komodo_gtest_SOURCES = \
7         gtest/main.cpp \
8         gtest/utils.cpp \
9         gtest/test_checktransaction.cpp \
10         gtest/json_test_vectors.cpp \
11         gtest/json_test_vectors.h \
12         # gtest/test_foundersreward.cpp \
13         gtest/test_wallet_zkeys.cpp \
14 # These tests are order-dependent, because they
15 # depend on global state (see #1539)
16 if ENABLE_WALLET
17 zcash_gtest_SOURCES += \
18         wallet/gtest/test_wallet_zkeys.cpp
19 endif
20 zcash_gtest_SOURCES += \
21         gtest/test_tautology.cpp \
22         gtest/test_deprecation.cpp \
23         gtest/test_equihash.cpp \
24         gtest/test_httprpc.cpp \
25         gtest/test_joinsplit.cpp \
26         gtest/test_keystore.cpp \
27         gtest/test_noteencryption.cpp \
28         gtest/test_mempool.cpp \
29         gtest/test_merkletree.cpp \
30         gtest/test_metrics.cpp \
31         gtest/test_miner.cpp \
32         gtest/test_pow.cpp \
33         gtest/test_random.cpp \
34         gtest/test_rpc.cpp \
35         gtest/test_transaction.cpp \
36         gtest/test_upgrades.cpp \
37         gtest/test_validation.cpp \
38         gtest/test_circuit.cpp \
39         gtest/test_txid.cpp \
40         gtest/test_libzcash_utils.cpp \
41         gtest/test_proofs.cpp \
42         gtest/test_paymentdisclosure.cpp \
43         gtest/test_checkblock.cpp
44 if ENABLE_WALLET
45 zcash_gtest_SOURCES += \
46         wallet/gtest/test_wallet.cpp
47 endif
48
49 komodo_gtest_CPPFLAGS = $(AM_CPPFLAGS) -DMULTICORE -fopenmp -DBINARY_OUTPUT -DCURVE_ALT_BN128 -DSTATIC $(BITCOIN_INCLUDES)
50 komodo_gtest_CXXFLAGS = $(AM_CXXFLAGS) $(PIE_FLAGS)
51
52 komodo_gtest_LDADD = -lgtest -lgmock $(LIBBITCOIN_SERVER) $(LIBBITCOIN_CLI) $(LIBBITCOIN_COMMON) $(LIBBITCOIN_UTIL) $(LIBBITCOIN_CRYPTO) $(LIBBITCOIN_UNIVALUE) $(LIBLEVELDB) $(LIBMEMENV) \
53   $(BOOST_LIBS) $(BOOST_UNIT_TEST_FRAMEWORK_LIB) $(LIBSECP256K1)
54 if ENABLE_ZMQ
55 zcash_gtest_LDADD += $(LIBBITCOIN_ZMQ) $(ZMQ_LIBS)
56 endif
57 if ENABLE_WALLET
58 komodo_gtest_LDADD += $(LIBBITCOIN_WALLET)
59 endif
60
61 komodo_gtest_LDADD += $(LIBZCASH_CONSENSUS) $(BDB_LIBS) $(SSL_LIBS) $(CRYPTO_LIBS) $(EVENT_PTHREADS_LIBS) $(EVENT_LIBS) $(LIBZCASH) $(LIBSNARK) $(LIBZCASH_LIBS)
62
63 if ENABLE_PROTON
64 komodo_gtest_LDADD += $(LIBBITCOIN_PROTON) $(PROTON_LIBS)
65 endif
66
67
68 komodo_gtest_LDFLAGS = $(RELDFLAGS) $(AM_LDFLAGS) $(LIBTOOL_APP_LDFLAGS) -static
69
70 komodo_gtest_LDFLAGS = $(RELDFLAGS) $(AM_LDFLAGS) $(LIBTOOL_APP_LDFLAGS) -static
71
72 komodo-gtest-expected-failures: komodo-gtest FORCE
73         ./komodo-gtest --gtest_filter=*DISABLED_* --gtest_also_run_disabled_tests
This page took 0.027784 seconds and 4 git commands to generate.