PIVX Core  5.6.99
P2P Digital Currency
sanity_tests.cpp
Go to the documentation of this file.
1 // Copyright (c) 2012-2013 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.
4 
5 #include "compat/sanity.h"
6 #include "key.h"
7 #include "test_pivx.h"
8 
9 #include <boost/test/unit_test.hpp>
10 
12 
13 BOOST_AUTO_TEST_CASE(basic_sanity)
14 {
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, "secp256k1 sanity test");
18 }
19 
BOOST_AUTO_TEST_SUITE_END()
bool glibc_sanity_test()
bool glibcxx_sanity_test()
bool ECC_InitSanityCheck()
Check that required EC support is available at runtime.
Definition: key.cpp:336
#define BOOST_FIXTURE_TEST_SUITE(a, b)
Definition: object.cpp:14
BOOST_AUTO_TEST_CASE(basic_sanity)