Files
MaxScale/maxscale-system-test/clustrix_mon.cpp
Johan Wikman f576680ed9 Update 2.4.7 change date
Only the files that were not already updated as part of the
2.3.17 release.
2020-02-12 15:21:44 +02:00

33 lines
835 B
C++

/*
* Copyright (c) 2019 MariaDB Corporation Ab
*
* Use of this software is governed by the Business Source License included
* in the LICENSE.TXT file and at www.mariadb.com/bsl11.
*
* Change Date: 2024-02-10
*
* On the date above, in accordance with the Business Source License, use
* of this software will be governed by version 2 or later of the General
* Public License.
*/
/**
* @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;
}