From 6d96a2394d3a4b983b1fa046cf605e22404c4948 Mon Sep 17 00:00:00 2001 From: gVisor bot Date: Tue, 22 Dec 2020 17:44:33 -0800 Subject: Internal change. PiperOrigin-RevId: 348720223 --- test/syscalls/linux/getdents.cc | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'test/syscalls/linux/getdents.cc') diff --git a/test/syscalls/linux/getdents.cc b/test/syscalls/linux/getdents.cc index b040cdcf7..93c692dd6 100644 --- a/test/syscalls/linux/getdents.cc +++ b/test/syscalls/linux/getdents.cc @@ -32,6 +32,7 @@ #include "gmock/gmock.h" #include "gtest/gtest.h" +#include "absl/container/node_hash_map.h" #include "absl/container/node_hash_set.h" #include "absl/strings/numbers.h" #include "absl/strings/str_cat.h" @@ -381,7 +382,7 @@ TYPED_TEST(GetdentsTest, PartialBuffer) { // getdents iterates correctly despite mutation of /proc/self/fd. TYPED_TEST(GetdentsTest, ProcSelfFd) { constexpr size_t kNfds = 10; - std::unordered_map fds; + absl::node_hash_map fds; fds.reserve(kNfds); for (size_t i = 0; i < kNfds; i++) { FileDescriptor fd = ASSERT_NO_ERRNO_AND_VALUE(NewEventFD()); -- cgit v1.2.3