diff options
author | p8p <p8p@users.noreply.github.com> | 2018-08-25 04:16:01 -0700 |
---|---|---|
committer | p8p <p8p@users.noreply.github.com> | 2018-08-25 04:31:22 -0700 |
commit | 9d6539923e615014189c9281a52fad080f09a64e (patch) | |
tree | 969f60962c351ff93918b43af2634d1eb8bbd245 /tests/unit_tests/is_hdd.cpp | |
parent | Merge pull request #4223 (diff) | |
download | monero-9d6539923e615014189c9281a52fad080f09a64e.tar.xz |
is_hdd update
Diffstat (limited to 'tests/unit_tests/is_hdd.cpp')
-rw-r--r-- | tests/unit_tests/is_hdd.cpp | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/tests/unit_tests/is_hdd.cpp b/tests/unit_tests/is_hdd.cpp new file mode 100644 index 000000000..1be670e5e --- /dev/null +++ b/tests/unit_tests/is_hdd.cpp @@ -0,0 +1,17 @@ +#include "common/util.h" +#include <string> +#include <gtest/gtest.h> + +#if defined(__GLIBC__) +TEST(is_hdd, linux_os_root) +{ + std::string path = "/"; + EXPECT_TRUE(tools::is_hdd(path.c_str())); +} +#else +TEST(is_hdd, unknown_os) +{ + std::string path = ""; + EXPECT_FALSE(tools::is_hdd(path.c_str())); +} +#endif |