24 lines
717 B
C
24 lines
717 B
C
#ifndef MAXSCALE_TEST_H
|
|
#define MAXSCALE_TEST_H
|
|
|
|
/*
|
|
* Copyright (c) 2016 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: 2020-01-01
|
|
*
|
|
* 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.
|
|
*/
|
|
|
|
#define TEST_DIR "@CMAKE_BINARY_DIR@"
|
|
#define TEST_LOG_DIR "@CMAKE_BINARY_DIR@/log"
|
|
#define TEST_BIN_DIR "@CMAKE_BINARY_DIR@/bin"
|
|
#define TEST_MOD_DIR "@CMAKE_BINARY_DIR@/modules"
|
|
#define TEST_LIB_DIR "@CMAKE_BINARY_DIR@/lib"
|
|
#define TEST_ETC_DIR "@CMAKE_BINARY_DIR@/etc"
|
|
#endif
|