MXS-2197 Rename all .h files under server to .hh

This commit is contained in:
Johan Wikman
2018-12-10 12:44:51 +02:00
parent 0927a0b938
commit 08ed764675
15 changed files with 13 additions and 17 deletions

View File

@ -39,7 +39,7 @@
#include <maxscale/routingworker.hh>
#include "../dcb.cc"
#include "test_utils.h"
#include "test_utils.hh"
/**
* test1 Allocate a dcb and do lots of other things

View File

@ -37,7 +37,7 @@
#include <maxscale/listener.hh>
#include <maxscale/service.hh>
#include "test_utils.h"
#include "test_utils.hh"
#include "../internal/service.hh"
#include "../internal/session.hh"

View File

@ -37,7 +37,7 @@
#include <maxscale/alloc.h>
#include "../internal/service.hh"
#include "test_utils.h"
#include "test_utils.hh"
#include "../config.cc"
/**

View File

@ -1,6 +1,4 @@
#pragma once
#ifndef TEST_UTILS_H
#define TEST_UTILS_H
/*
* Copyright (c) 2016 MariaDB Corporation Ab
*
@ -14,7 +12,7 @@
* Public License.
*/
#include <maxscale/cdefs.h>
#include <maxscale/ccdefs.hh>
#include <maxbase/maxbase.hh>
#include <maxscale/dcb.hh>
#include <maxscale/housekeeper.h>
@ -66,5 +64,3 @@ void init_test_env(char* __attribute((unused)) path = nullptr, uint32_t init_typ
preload_module("readconnroute", "server/modules/routing/readconnroute/", MODULE_ROUTER);
preload_module("mysqlauth", "/server/modules/authenticator/MySQLAuth/", MODULE_AUTHENTICATOR);
}
#endif