
First implementation of Clustrix setup creation TODO: move Clustrix installation to MDBCI
20 lines
446 B
C++
20 lines
446 B
C++
/**
|
|
* @file clustrix_mon.cpp - simple Clustrix monitor test
|
|
* Just creates Clustrix cluster and connect Maxscale to it
|
|
* It can be used as a template for clustrix tests
|
|
*
|
|
* See Clustrix_nodes.h for details about configiration
|
|
*/
|
|
|
|
#include "testconnections.h"
|
|
|
|
int main(int argc, char* argv[])
|
|
{
|
|
int i;
|
|
TestConnections* Test = new TestConnections(argc, argv);
|
|
|
|
int rval = Test->global_result;
|
|
delete Test;
|
|
return rval;
|
|
}
|