28413fd626
* Change from glog to spdlog * Remove HA tests * Remove logrotate log configuration * Define custom main for unit gtests
10 lines
232 B
C++
10 lines
232 B
C++
#include <gtest/gtest.h>
|
|
#include <utils/logging.hpp>
|
|
|
|
int main(int argc, char **argv) {
|
|
::testing::InitGoogleTest(&argc, argv);
|
|
logging::RedirectToStderr();
|
|
spdlog::set_level(spdlog::level::info);
|
|
return RUN_ALL_TESTS();
|
|
}
|