aboutsummaryrefslogtreecommitdiff
path: root/tests/unit_tests/main.cpp
diff options
context:
space:
mode:
authorjeffro256 <jeffro256@tutanota.com>2023-10-28 03:14:05 -0500
committerjeffro256 <jeffro256@tutanota.com>2023-10-28 03:14:05 -0500
commit504269e6cf25a00f729b413cefcac58a15c92925 (patch)
tree2973faa0c68117580c5a45777facc0f6a02a9320 /tests/unit_tests/main.cpp
parentMerge pull request #9026 (diff)
downloadmonero-504269e6cf25a00f729b413cefcac58a15c92925.tar.xz
unit tests: fix running from pwd and auto test selected location
Diffstat (limited to '')
-rw-r--r--tests/unit_tests/main.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/unit_tests/main.cpp b/tests/unit_tests/main.cpp
index 586cb7c60..4094d79b7 100644
--- a/tests/unit_tests/main.cpp
+++ b/tests/unit_tests/main.cpp
@@ -63,7 +63,7 @@ int main(int argc, char** argv)
::testing::InitGoogleTest(&argc, argv);
// the default test data directory is ../data (relative to the executable's directory)
- const auto default_test_data_dir = boost::filesystem::path(argv[0]).parent_path().parent_path() / "data";
+ const auto default_test_data_dir = boost::filesystem::canonical(argv[0]).parent_path().parent_path() / "data";
po::options_description desc_options("Command line options");
const command_line::arg_descriptor<std::string> arg_data_dir = { "data-dir", "Data files directory", default_test_data_dir.string() };