sanity: hook up sanity checks

This commit is contained in:
Cory Fields 2014-06-13 19:23:01 -04:00
parent 679240d0e9
commit 92a6220711
1 changed files with 3 additions and 2 deletions

View File

@ -31,6 +31,7 @@
#ifndef WIN32 #ifndef WIN32
#include <signal.h> #include <signal.h>
#endif #endif
#include "compat/sanity.h"
#include <boost/algorithm/string/predicate.hpp> #include <boost/algorithm/string/predicate.hpp>
#include <boost/filesystem.hpp> #include <boost/filesystem.hpp>
@ -417,8 +418,8 @@ bool InitSanityCheck(void)
"information, visit https://en.bitcoin.it/wiki/OpenSSL_and_EC_Libraries"); "information, visit https://en.bitcoin.it/wiki/OpenSSL_and_EC_Libraries");
return false; return false;
} }
if (!glibc_sanity_test() || !glibcxx_sanity_test())
// TODO: remaining sanity checks, see #4081 return false;
return true; return true;
} }