Merge #12001: [RPC] Adding ::minRelayTxFee amount to getmempoolinfo and updating...
[bitcoinplatinum.git] / src / test / sanity_tests.cpp
blobe97ad2ee6ad292ae7c7533b33f38d241df8c3027
1 // Copyright (c) 2012-2017 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 #include <compat/sanity.h>
6 #include <key.h>
7 #include <test/test_bitcoin.h>
9 #include <boost/test/unit_test.hpp>
11 BOOST_FIXTURE_TEST_SUITE(sanity_tests, BasicTestingSetup)
13 BOOST_AUTO_TEST_CASE(basic_sanity)
15 BOOST_CHECK_MESSAGE(glibc_sanity_test() == true, "libc sanity test");
16 BOOST_CHECK_MESSAGE(glibcxx_sanity_test() == true, "stdlib sanity test");
17 BOOST_CHECK_MESSAGE(ECC_InitSanityCheck() == true, "openssl ECC test");
20 BOOST_AUTO_TEST_SUITE_END()