MXS-2900 Rename maxtest files

Many of the headers were not renamed to avoid changing every test.
This commit is contained in:
Esa Korhonen
2020-04-06 18:08:20 +03:00
parent aacae9b508
commit 03726a5f25
36 changed files with 40 additions and 40 deletions

View File

@ -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

View File

@ -1,7 +1,7 @@
#pragma once
#include <string>
#include "nodes.h"
#include "nodes.hh"
#include "mariadb_func.h"
#include "mariadb_nodes.h"

View File

@ -1,7 +1,7 @@
#pragma once
#include "mariadb_nodes.h"
#include "maxscales.h"
#include "maxscales.hh"
#include "test_dir.hh"
#include <fcntl.h>
#include <pthread.h>

View File

@ -1,27 +1,27 @@
add_library(maxtest SHARED
stopwatch.cpp
big_load.cpp
big_transaction.cpp
blob_test.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
maxscales.cpp
nodes.cpp
rds_vpc.cpp
sql_t1.cpp
tcp_connection.cpp
test_binlog_fnc.cpp
testconnections.cpp
big_load.cc
big_transaction.cc
blob_test.cc
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
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)

View File

@ -1,4 +1,4 @@
#include "envv.h"
#include "envv.hh"
#include <cstring>
#include <cstdarg>

View File

@ -3,7 +3,7 @@
#include <stdio.h>
#include <string.h>
#include <errno.h>
#include "execute_cmd.h"
#include "execute_cmd.hh"
using namespace std;

View File

@ -20,7 +20,7 @@
#include <future>
#include <functional>
#include <algorithm>
#include "envv.h"
#include "envv.hh"
using std::cout;
using std::endl;

View File

@ -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, bool verbose,
std::string network_config)

View File

@ -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()
{

View File

@ -1,4 +1,4 @@
#include "execute_cmd.h"
#include "execute_cmd.hh"
#include "rds_vpc.h"
RDS::RDS(char* cluster)

View File

@ -11,7 +11,7 @@
* Public License.
*/
#include "stopwatch.h"
#include "stopwatch.hh"
#include <iomanip>
#include <iostream>

View File

@ -1,4 +1,4 @@
#include "tcp_connection.h"
#include "tcp_connection.hh"
#include <sys/types.h>
#include <sys/socket.h>

View File

@ -21,7 +21,7 @@
#include "sql_t1.h"
#include "testconnections.h"
#include "test_info.hh"
#include "envv.h"
#include "envv.hh"
using namespace mxb;
using std::cout;

View File

@ -1,5 +1,5 @@
#include "testconnections.h"
#include "tcp_connection.h"
#include "tcp_connection.hh"
#include <vector>

View File

@ -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>