summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
Diffstat (limited to 'test')
-rw-r--r--test/test_directory.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/test/test_directory.cpp b/test/test_directory.cpp
index 3c43663..ff10c2d 100644
--- a/test/test_directory.cpp
+++ b/test/test_directory.cpp
@@ -20,7 +20,6 @@
#include "fud_directory.hpp"
#include "fud_memory.hpp"
#include "fud_string.hpp"
-#include "test_common.hpp"
#include "gtest/gtest.h"
#include <algorithm>
@@ -31,12 +30,13 @@
namespace fud {
-int unlink_cb(const char* fpath, const struct stat* sb, int typeflag, struct FTW* ftwbuf)
+int unlink_cb(const char* fpath, const struct stat* sb_unused, int typeflag, struct FTW* ftwbuf)
{
+ static_cast<void>(sb_unused);
int retValue = remove(fpath);
EXPECT_EQ(retValue, 0);
- if (retValue) {
+ if (retValue != 0) {
perror(fpath);
}
@@ -128,7 +128,7 @@ TEST(FudDirectory, Basic)
break;
}
const auto dirEntry = *dirEntryOpt;
- const auto expected = std::find_if(
+ const auto* expected = std::find_if(
expectedFiles.begin(),
expectedFiles.end(),
[&dirEntry](const DirectoryEntry& entry) { return entry.name.compare(dirEntry.name) && entry.entryType == dirEntry.entryType; });