aboutsummaryrefslogtreecommitdiff
path: root/src/test/test_dogecoin.cpp
diff options
context:
space:
mode:
authorWladimir J. van der Laan <[email protected]>2014-03-25 07:53:21 +0100
committerlangerhans <[email protected]>2014-05-25 18:03:15 +0200
commitc88b4903c1f63489f2615b680af968d372498a4d (patch)
treebca19a9e1811e6c6c70aab93509a28bf8df931ef /src/test/test_dogecoin.cpp
parentUpdate moved and dead links (diff)
downloaddiscoin-c88b4903c1f63489f2615b680af968d372498a4d.tar.xz
discoin-c88b4903c1f63489f2615b680af968d372498a4d.zip
Fix test build after d138598
Building the tests was giving some vague error message about a doubly-defined symbol. The solution is to define ShutdownRequested in test_bitcoin.cpp as well so that init.cpp does not get pulled in.
Diffstat (limited to 'src/test/test_dogecoin.cpp')
-rw-r--r--src/test/test_dogecoin.cpp5
1 files changed, 5 insertions, 0 deletions
diff --git a/src/test/test_dogecoin.cpp b/src/test/test_dogecoin.cpp
index 3b75aad14..2d993e24d 100644
--- a/src/test/test_dogecoin.cpp
+++ b/src/test/test_dogecoin.cpp
@@ -84,3 +84,8 @@ void StartShutdown()
exit(0);
}
+bool ShutdownRequested()
+{
+ return false;
+}
+