Skip to content
Snippets Groups Projects
Commit a11b8b55 authored by Ben Cumming's avatar Ben Cumming
Browse files

Merge pull request #21 from halfflat/feature/out-of-tree-unit-tests

Better support tests in out-of-tree build.
parents 6b9444c5 a9294731
No related branches found
No related tags found
No related merge requests found
......@@ -39,6 +39,7 @@ set(VALIDATION_SOURCES
validate.cpp
)
add_definitions("-DDATADIR=\"${CMAKE_SOURCE_DIR}/data\"")
add_executable(test.exe ${TEST_SOURCES} ${HEADERS})
add_executable(validate.exe ${VALIDATION_SOURCES} ${HEADERS})
......
......@@ -11,6 +11,11 @@
#include "../src/cell.hpp"
#include "../src/swcio.hpp"
// Path to data directory can be overriden at compile time.
#if !defined(DATADIR)
#define DATADIR "../data"
#endif
// SWC tests
void expect_record_equals(const nest::mc::io::swc_record &expected,
const nest::mc::io::swc_record &actual)
......@@ -227,7 +232,8 @@ TEST(swc_parser, from_allen_db)
{
using namespace nest::mc;
auto fname = "../data/example.swc";
std::string datadir{DATADIR};
auto fname = datadir+"/example.swc";
std::ifstream fid(fname);
if(!fid.is_open()) {
std::cerr << "unable to open file " << fname << "... skipping test\n";
......@@ -493,7 +499,8 @@ TEST(swc_io, cell_construction)
// the one generated with the C++ interface
TEST(swc_parser, from_file_ball_and_stick)
{
auto fname = "../data/ball_and_stick.swc";
std::string datadir{DATADIR};
auto fname = datadir+"/ball_and_stick.swc";
std::ifstream fid(fname);
if(!fid.is_open()) {
std::cerr << "unable to open file " << fname << "... skipping test\n";
......
......@@ -8,6 +8,11 @@
#include "../src/cell_tree.hpp"
// Path to data directory can be overriden at compile time.
#if !defined(DATADIR)
#define DATADIR "../data"
#endif
using json = nlohmann::json;
using range = memory::Range;
......@@ -287,7 +292,10 @@ TEST(cell_tree, balance) {
TEST(cell_tree, json_load)
{
json cell_data;
std::ifstream("../data/cells_small.json") >> cell_data;
std::string path{DATADIR};
path += "/cells_small.json";
std::ifstream(path) >> cell_data;
for(auto c : range(0,cell_data.size())) {
std::vector<int> parent_index = cell_data[c]["parent_index"];
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment