Merge #9911: Wshadow: various gcc fixes
[bitcoinplatinum.git] / src / test / test_bitcoin_main.cpp
blob34beef553901c21a47909d20c9ff97fdc3174269
1 // Copyright (c) 2011-2016 The Bitcoin Core developers
2 // Distributed under the MIT software license, see the accompanying
3 // file COPYING or http://www.opensource.org/licenses/mit-license.php.
5 #define BOOST_TEST_MODULE Bitcoin Test Suite
7 #include "net.h"
9 #include <boost/test/unit_test.hpp>
11 std::unique_ptr<CConnman> g_connman;
13 void Shutdown(void* parg)
15 exit(EXIT_SUCCESS);
18 void StartShutdown()
20 exit(EXIT_SUCCESS);
23 bool ShutdownRequested()
25 return false;