Merge pull request #4293

9d65399 is_hdd update (p8p)
This commit is contained in:
luigi1111
2018-09-10 15:07:02 -05:00
5 changed files with 61 additions and 53 deletions
+2 -1
View File
@@ -77,7 +77,8 @@ set(unit_tests_sources
output_selection.cpp
vercmp.cpp
ringdb.cpp
wipeable_string.cpp)
wipeable_string.cpp
is_hdd.cpp)
set(unit_tests_headers
unit_tests_utils.h)
+17
View File
@@ -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