Migrates uses of deprecated map types to recommended types.

PiperOrigin-RevId: 334419854
This commit is contained in:
gVisor bot 2020-09-29 11:11:13 -07:00
parent 5075d0342f
commit b6fb11a290
2 changed files with 4 additions and 2 deletions

View File

@ -1667,6 +1667,7 @@ cc_binary(
"//test/util:cleanup",
"//test/util:file_descriptor",
"//test/util:fs_util",
"@com_google_absl//absl/container:node_hash_set",
"@com_google_absl//absl/strings",
"@com_google_absl//absl/synchronization",
"@com_google_absl//absl/time",

View File

@ -47,6 +47,7 @@
#include "gmock/gmock.h"
#include "gtest/gtest.h"
#include "absl/container/node_hash_set.h"
#include "absl/strings/ascii.h"
#include "absl/strings/match.h"
#include "absl/strings/numbers.h"
@ -721,8 +722,8 @@ static void CheckFdDirGetdentsDuplicates(const std::string& path) {
EXPECT_GE(newfd, 1024);
auto fd_closer = Cleanup([newfd]() { close(newfd); });
auto fd_files = ASSERT_NO_ERRNO_AND_VALUE(ListDir(path.c_str(), false));
std::unordered_set<std::string> fd_files_dedup(fd_files.begin(),
fd_files.end());
absl::node_hash_set<std::string> fd_files_dedup(fd_files.begin(),
fd_files.end());
EXPECT_EQ(fd_files.size(), fd_files_dedup.size());
}