]> Git Repo - VerusCoin.git/blob - src/test/sanity_tests.cpp
Merge pull request #5506
[VerusCoin.git] / src / test / sanity_tests.cpp
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
8 #include <boost/test/unit_test.hpp>
9 BOOST_AUTO_TEST_SUITE(sanity_tests)
10
11 BOOST_AUTO_TEST_CASE(basic_sanity)
12 {
13   BOOST_CHECK_MESSAGE(glibc_sanity_test() == true, "libc sanity test");
14   BOOST_CHECK_MESSAGE(glibcxx_sanity_test() == true, "stdlib sanity test");
15   BOOST_CHECK_MESSAGE(ECC_InitSanityCheck() == true, "openssl ECC test");
16 }
17
18 BOOST_AUTO_TEST_SUITE_END()
This page took 0.024599 seconds and 4 git commands to generate.