Rename Clustrix to Xpand in the tests

This commit is contained in:
Timofey Turenko
2020-10-22 15:28:10 +03:00
parent 3546b716c5
commit 7680c9ce11
18 changed files with 134 additions and 534 deletions

32
system-test/xpand_mon.cpp Normal file
View File

@ -0,0 +1,32 @@
/*
* 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-10-14
*
* 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 xpan_mon.cpp - simple Xpand monitor test
* Just creates Xpand cluster and connect Maxscale to it
* It can be used as a template for Xpand tests
*
* See xpand_nodes.h for details about configiration
*/
#include <maxtest/testconnections.hh>
int main(int argc, char* argv[])
{
int i;
TestConnections* Test = new TestConnections(argc, argv);
int rval = Test->global_result;
delete Test;
return rval;
}