mirror of
https://github.com/XRPLF/clio.git
synced 2025-11-20 19:56:00 +00:00
@@ -18,15 +18,23 @@
|
||||
//==============================================================================
|
||||
|
||||
#include "util/TerminationHandler.h"
|
||||
#include "util/TestGlobals.h"
|
||||
#include "util/prometheus/Prometheus.h"
|
||||
|
||||
#include <gtest/gtest.h>
|
||||
|
||||
/*
|
||||
* Supported custom command line options for clio_tests:
|
||||
* --backend_host=<host> - sets the cassandra/scylladb host for backend tests
|
||||
* --backend_keyspace=<keyspace> - sets the cassandra/scylladb keyspace for backend tests
|
||||
*/
|
||||
int
|
||||
main(int argc, char** argv)
|
||||
main(int argc, char* argv[])
|
||||
{
|
||||
util::setTerminationHandler();
|
||||
PrometheusService::init();
|
||||
testing::InitGoogleTest(&argc, argv);
|
||||
TestGlobals::instance().parse(argc, argv);
|
||||
|
||||
return RUN_ALL_TESTS();
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user