diff options
| author | Gavin Andresen <[email protected]> | 2013-12-03 03:47:44 -0800 |
|---|---|---|
| committer | Gavin Andresen <[email protected]> | 2013-12-03 03:47:44 -0800 |
| commit | cf74e8cb5eed90cbb14ed40d834c30ef9d37c443 (patch) | |
| tree | 115a15599169cb7fbcaa0a76c38c3c444dbaf068 /src/test | |
| parent | Merge pull request #3345 from Michagogo/gitian-descriptor-deps-input-typo (diff) | |
| parent | bitcoin-cli: remove unneeded dependencies (only code movement) (diff) | |
| download | discoin-cf74e8cb5eed90cbb14ed40d834c30ef9d37c443.tar.xz discoin-cf74e8cb5eed90cbb14ed40d834c30ef9d37c443.zip | |
Merge pull request #3320 from laanwj/2013_11_cli_split
bitcoin-cli: remove unneeded dependencies (only minor code movement)
Diffstat (limited to 'src/test')
| -rw-r--r-- | src/test/Makefile.am | 2 | ||||
| -rw-r--r-- | src/test/test_bitcoin.cpp | 1 |
2 files changed, 1 insertions, 2 deletions
diff --git a/src/test/Makefile.am b/src/test/Makefile.am index 180fd7eff..39f2c6a38 100644 --- a/src/test/Makefile.am +++ b/src/test/Makefile.am @@ -20,7 +20,7 @@ BUILT_SOURCES = $(JSON_TEST_FILES:.json=.json.h) $(RAW_TEST_FILES:.raw=.raw.h) # test_bitcoin binary # test_bitcoin_CPPFLAGS = $(AM_CPPFLAGS) $(TESTDEFS) -test_bitcoin_LDADD = $(LIBBITCOIN) $(LIBLEVELDB) $(LIBMEMENV) \ +test_bitcoin_LDADD = $(LIBBITCOIN_SERVER) $(LIBBITCOIN_CLI) $(LIBBITCOIN_COMMON) $(LIBLEVELDB) $(LIBMEMENV) \ $(BOOST_LIBS) $(BOOST_UNIT_TEST_FRAMEWORK_LIB) $(BDB_LIBS) test_bitcoin_SOURCES = accounting_tests.cpp alert_tests.cpp \ allocator_tests.cpp base32_tests.cpp base58_tests.cpp base64_tests.cpp \ diff --git a/src/test/test_bitcoin.cpp b/src/test/test_bitcoin.cpp index f94716759..443e7735d 100644 --- a/src/test/test_bitcoin.cpp +++ b/src/test/test_bitcoin.cpp @@ -14,7 +14,6 @@ CWallet* pwalletMain; -CClientUIInterface uiInterface; extern bool fPrintToConsole; extern void noui_connect(); |