
The paths were wrong in the scripts used to run tests. The same problem was in the CMake files that used CMAKE_SOURCE_DIR instead of CMAKE_CURRENT_SOURCE_DIR. Added missing check for BUILD_SYSTEM_TESTS in avrorouter for the workaround to building without all dependencies present.
18 lines
450 B
C
18 lines
450 B
C
#ifndef TEMPLATES_H
|
|
#define TEMPLATES_H
|
|
|
|
static struct
|
|
{
|
|
const char* test_name;
|
|
const char* test_template;
|
|
} cnf_templates[] __attribute__((unused)) = {
|
|
@CNF_TEMPLATES@ {NULL, NULL}};
|
|
|
|
/** The default template to use */
|
|
static const char * default_template __attribute__((unused)) = "replication";
|
|
|
|
/** This is the working directory for all tests */
|
|
static const char *test_dir __attribute__((unused)) = "@CMAKE_CURRENT_SOURCE_DIR@";
|
|
|
|
#endif
|