Merge pull request #4293

9d65399 is_hdd update (p8p)
This commit is contained in:
luigi1111 2018-09-10 15:07:02 -05:00
commit ab85b924c9
No known key found for this signature in database
GPG key ID: F4ACA0183641E010
5 changed files with 61 additions and 53 deletions

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)

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