mirror of
https://github.com/monero-project/monero.git
synced 2026-07-30 23:50:24 -07:00
@@ -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)
|
||||
|
||||
@@ -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
|
||||
Reference in New Issue
Block a user