diff options
author | redfish <redfish@galactica.pw> | 2017-09-25 02:46:14 +0000 |
---|---|---|
committer | redfish <redfish@galactica.pw> | 2017-09-28 01:41:44 -0400 |
commit | 540d6fa3d5757e30bc251cbe9f2474e67c0a5d74 (patch) | |
tree | 83baac57511623349caccfb636d1ffcd536e25b6 /tests/unit_tests/unit_tests_utils.h | |
parent | Merge pull request #2496 (diff) | |
download | monero-540d6fa3d5757e30bc251cbe9f2474e67c0a5d74.tar.xz |
tests: pass data dir as arg
This fixes test failure on builds that happen
to be built in 'build/' instead of 'build/release'.
Use boost filesystem path type.
Diffstat (limited to '')
-rw-r--r-- | tests/unit_tests/unit_tests_utils.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/tests/unit_tests/unit_tests_utils.h b/tests/unit_tests/unit_tests_utils.h index 11230c0db..a07eaf02b 100644 --- a/tests/unit_tests/unit_tests_utils.h +++ b/tests/unit_tests/unit_tests_utils.h @@ -31,9 +31,12 @@ #pragma once #include <atomic> +#include <boost/filesystem.hpp> namespace unit_test { + extern boost::filesystem::path data_dir; + class call_counter { public: |