Files
MaxScale/maxscale-system-test/templates.h.in
Markus Mäkelä d7d4ec29bb Add tests from develop
Added tests from develop. The test results need to be modified for 2.0.
2017-05-26 15:40:40 +03:00

18 lines
370 B
C

#ifndef TEMPLATES_H
#define TEMPLATES_H
static struct
{
const char* test_name;
const char* test_template;
} cnf_templates[] = {
@CNF_TEMPLATES@ {NULL, NULL}};
/** The default template to use */
static const char * default_template = "replication";
/** This is the working directory for all tests */
static const char *test_dir = "@CMAKE_SOURCE_DIR@";
#endif