Merge pull request #2720
110339f5
unit_tests: fix data dir determination (moneromooo-monero)
This commit is contained in:
commit
4754390725
|
@ -66,7 +66,7 @@ int main(int argc, char** argv)
|
|||
return 1;
|
||||
|
||||
if (vm["data-dir"].defaulted())
|
||||
unit_test::data_dir = boost::filesystem::path(epee::string_tools::get_current_module_folder())
|
||||
unit_test::data_dir = boost::filesystem::canonical(boost::filesystem::path(epee::string_tools::get_current_module_folder()))
|
||||
.parent_path().parent_path().parent_path().parent_path()
|
||||
.append("tests").append("data");
|
||||
else
|
||||
|
|
Loading…
Reference in New Issue