diff options
author | moneromooo-monero <moneromooo-monero@users.noreply.github.com> | 2017-10-08 21:19:05 +0100 |
---|---|---|
committer | moneromooo-monero <moneromooo-monero@users.noreply.github.com> | 2017-10-08 21:19:05 +0100 |
commit | fe484f30496bb6b1f93adc96c89e91a9d75871ea (patch) | |
tree | 7e523b58a86c7697662793b919900bf9a418a9f7 /tests/unit_tests/CMakeLists.txt | |
parent | Merge pull request #2548 (diff) | |
download | monero-fe484f30496bb6b1f93adc96c89e91a9d75871ea.tar.xz |
unit_tests: data dir is now overridden with --data-dir
rather than a raw string without option
Diffstat (limited to '')
-rw-r--r-- | tests/unit_tests/CMakeLists.txt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/unit_tests/CMakeLists.txt b/tests/unit_tests/CMakeLists.txt index 1dac92bed..e0eef5c5d 100644 --- a/tests/unit_tests/CMakeLists.txt +++ b/tests/unit_tests/CMakeLists.txt @@ -100,4 +100,4 @@ endif () add_test( NAME unit_tests - COMMAND unit_tests "${TEST_DATA_DIR}") + COMMAND unit_tests --data-dir "${TEST_DATA_DIR}") |