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 "mariadb_func.h"
#include <errno.h> #include <errno.h>
#include <string> #include <string>
#include "nodes.h" #include "nodes.hh"
/** /**
* @brief A class to handle backend nodes * @brief A class to handle backend nodes

View File

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

View File

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

View File

@ -1,27 +1,27 @@
add_library(maxtest SHARED add_library(maxtest SHARED
stopwatch.cpp big_load.cc
big_load.cpp big_transaction.cc
big_transaction.cpp blob_test.cc
blob_test.cpp config_operations.cc
config_operations.cpp different_size.cc
different_size.cpp envv.cc
envv.cpp execute_cmd.cc
execute_cmd.cpp fw_copy_rules.cc
fw_copy_rules.cpp get_com_select_insert.cc
get_com_select_insert.cpp get_my_ip.cc
get_my_ip.cpp keepalived_func.cc
keepalived_func.cpp mariadb_func.cc
mariadb_func.cpp mariadb_nodes.cc
mariadb_nodes.cpp maxadmin_operations.cc
maxadmin_operations.cpp maxinfo_func.cc
maxinfo_func.cpp maxscales.cc
maxscales.cpp nodes.cc
nodes.cpp rds_vpc.cc
rds_vpc.cpp sql_t1.cc
sql_t1.cpp stopwatch.cc
tcp_connection.cpp tcp_connection.cc
test_binlog_fnc.cpp test_binlog_fnc.cc
testconnections.cpp testconnections.cc
${CMAKE_CURRENT_BINARY_DIR}/test_info.cc ${CMAKE_CURRENT_BINARY_DIR}/test_info.cc
# Include the CDC connector in the core library # Include the CDC connector in the core library
${CMAKE_SOURCE_DIR}/connectors/cdc-connector/cdc_connector.cpp) ${CMAKE_SOURCE_DIR}/connectors/cdc-connector/cdc_connector.cpp)

View File

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

View File

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

View File

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

View File

@ -1,8 +1,8 @@
#include "maxscales.h" #include "maxscales.hh"
#include <sstream> #include <sstream>
#include <unordered_map> #include <unordered_map>
#include <string> #include <string>
#include "envv.h" #include "envv.hh"
Maxscales::Maxscales(const char *pref, const char *test_cwd, bool verbose, Maxscales::Maxscales(const char *pref, const char *test_cwd, bool verbose,
std::string network_config) std::string network_config)

View File

@ -1,4 +1,4 @@
#include "nodes.h" #include "nodes.hh"
#include <string> #include <string>
#include <cstring> #include <cstring>
#include <iostream> #include <iostream>
@ -7,7 +7,7 @@
#include <algorithm> #include <algorithm>
#include <signal.h> #include <signal.h>
#include "envv.h" #include "envv.hh"
Nodes::Nodes() Nodes::Nodes()
{ {

View File

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

View File

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

View File

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

View File

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

View File

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

View File

@ -4,8 +4,8 @@
*/ */
#include "testconnections.h" #include "testconnections.h"
#include "stopwatch.h" #include "stopwatch.hh"
#include "appexception.h" #include "appexception.hh"
#include <iostream> #include <iostream>
#include <memory> #include <memory>
#include <sstream> #include <sstream>