Merge branch '2.3' into 2.4
This commit is contained in:
@ -23,7 +23,7 @@
|
||||
|
||||
#include <errno.h>
|
||||
#include <string>
|
||||
#include "nodes.h"
|
||||
#include "nodes.hh"
|
||||
#include "mariadb_nodes.h"
|
||||
|
||||
#define CLUSTRIX_DEPS_YUM "yum install -y bzip2 wget screen ntp ntpdate vim htop mdadm"
|
||||
|
@ -16,7 +16,7 @@
|
||||
#include "mariadb_func.h"
|
||||
#include <errno.h>
|
||||
#include <string>
|
||||
#include "nodes.h"
|
||||
#include "nodes.hh"
|
||||
|
||||
/**
|
||||
* @brief A class to handle backend nodes
|
||||
|
@ -1,7 +1,7 @@
|
||||
#pragma once
|
||||
|
||||
#include <string>
|
||||
#include "nodes.h"
|
||||
#include "nodes.hh"
|
||||
#include "mariadb_func.h"
|
||||
#include "mariadb_nodes.h"
|
||||
|
@ -2,7 +2,7 @@
|
||||
|
||||
#include "mariadb_nodes.h"
|
||||
#include "clustrix_nodes.h"
|
||||
#include "maxscales.h"
|
||||
#include "maxscales.hh"
|
||||
#include "test_dir.hh"
|
||||
#include <fcntl.h>
|
||||
#include <pthread.h>
|
||||
|
@ -1,29 +1,29 @@
|
||||
add_library(maxtest SHARED
|
||||
big_load.cpp
|
||||
big_transaction.cpp
|
||||
blob_test.cpp
|
||||
big_load.cc
|
||||
big_transaction.cc
|
||||
blob_test.cc
|
||||
clustrix_nodes.cpp
|
||||
config_operations.cpp
|
||||
different_size.cpp
|
||||
envv.cpp
|
||||
execute_cmd.cpp
|
||||
fw_copy_rules.cpp
|
||||
get_com_select_insert.cpp
|
||||
get_my_ip.cpp
|
||||
keepalived_func.cpp
|
||||
mariadb_func.cpp
|
||||
mariadb_nodes.cpp
|
||||
maxadmin_operations.cpp
|
||||
maxinfo_func.cpp
|
||||
config_operations.cc
|
||||
different_size.cc
|
||||
envv.cc
|
||||
execute_cmd.cc
|
||||
fw_copy_rules.cc
|
||||
get_com_select_insert.cc
|
||||
get_my_ip.cc
|
||||
keepalived_func.cc
|
||||
mariadb_func.cc
|
||||
mariadb_nodes.cc
|
||||
maxadmin_operations.cc
|
||||
maxinfo_func.cc
|
||||
maxrest.cc
|
||||
maxscales.cpp
|
||||
nodes.cpp
|
||||
rds_vpc.cpp
|
||||
sql_t1.cpp
|
||||
stopwatch.cpp
|
||||
tcp_connection.cpp
|
||||
test_binlog_fnc.cpp
|
||||
testconnections.cpp
|
||||
maxscales.cc
|
||||
nodes.cc
|
||||
rds_vpc.cc
|
||||
sql_t1.cc
|
||||
stopwatch.cc
|
||||
tcp_connection.cc
|
||||
test_binlog_fnc.cc
|
||||
testconnections.cc
|
||||
${CMAKE_CURRENT_BINARY_DIR}/test_info.cc
|
||||
# Include the CDC connector in the core library
|
||||
${CMAKE_SOURCE_DIR}/connectors/cdc-connector/cdc_connector.cpp)
|
||||
|
@ -1,4 +1,4 @@
|
||||
#include "envv.h"
|
||||
#include "envv.hh"
|
||||
|
||||
#include <cstring>
|
||||
#include <cstdarg>
|
@ -3,7 +3,7 @@
|
||||
#include <stdio.h>
|
||||
#include <string.h>
|
||||
#include <errno.h>
|
||||
#include "execute_cmd.h"
|
||||
#include "execute_cmd.hh"
|
||||
|
||||
using namespace std;
|
||||
|
@ -20,7 +20,7 @@
|
||||
#include <future>
|
||||
#include <functional>
|
||||
#include <algorithm>
|
||||
#include "envv.h"
|
||||
#include "envv.hh"
|
||||
|
||||
using std::cout;
|
||||
using std::endl;
|
@ -1,8 +1,8 @@
|
||||
#include "maxscales.h"
|
||||
#include "maxscales.hh"
|
||||
#include <sstream>
|
||||
#include <unordered_map>
|
||||
#include <string>
|
||||
#include "envv.h"
|
||||
#include "envv.hh"
|
||||
|
||||
Maxscales::Maxscales(const char *pref,
|
||||
const char *test_cwd,
|
@ -1,4 +1,4 @@
|
||||
#include "nodes.h"
|
||||
#include "nodes.hh"
|
||||
#include <string>
|
||||
#include <cstring>
|
||||
#include <iostream>
|
||||
@ -7,7 +7,7 @@
|
||||
#include <algorithm>
|
||||
#include <signal.h>
|
||||
|
||||
#include "envv.h"
|
||||
#include "envv.hh"
|
||||
|
||||
Nodes::Nodes(const char* pref,
|
||||
const std::string& network_config,
|
@ -1,4 +1,4 @@
|
||||
#include "execute_cmd.h"
|
||||
#include "execute_cmd.hh"
|
||||
#include "rds_vpc.h"
|
||||
|
||||
RDS::RDS(char* cluster)
|
@ -11,7 +11,7 @@
|
||||
* Public License.
|
||||
*/
|
||||
|
||||
#include "stopwatch.h"
|
||||
#include "stopwatch.hh"
|
||||
|
||||
#include <iomanip>
|
||||
#include <iostream>
|
@ -1,4 +1,4 @@
|
||||
#include "tcp_connection.h"
|
||||
#include "tcp_connection.hh"
|
||||
|
||||
#include <sys/types.h>
|
||||
#include <sys/socket.h>
|
@ -22,7 +22,7 @@
|
||||
#include "sql_t1.h"
|
||||
#include "testconnections.h"
|
||||
#include "test_info.hh"
|
||||
#include "envv.h"
|
||||
#include "envv.hh"
|
||||
|
||||
using namespace mxb;
|
||||
using std::cout;
|
@ -1,5 +1,5 @@
|
||||
#include "testconnections.h"
|
||||
#include "tcp_connection.h"
|
||||
#include "tcp_connection.hh"
|
||||
|
||||
#include <vector>
|
||||
|
||||
|
@ -4,8 +4,8 @@
|
||||
*/
|
||||
|
||||
#include "testconnections.h"
|
||||
#include "stopwatch.h"
|
||||
#include "appexception.h"
|
||||
#include "stopwatch.hh"
|
||||
#include "appexception.hh"
|
||||
#include <iostream>
|
||||
#include <memory>
|
||||
#include <sstream>
|
||||
|
Reference in New Issue
Block a user