Internal change.

PiperOrigin-RevId: 294250370
This commit is contained in:
Zach Koopmans
2020-02-10 10:29:57 -08:00
committed by gVisor bot
parent 724bafa094
commit 75412ed9f5
+7 -2
View File
@@ -1055,9 +1055,9 @@ TEST(Inotify, ChmodGeneratesAttribEvent_NoRandomSave) {
const TempPath file1 =
ASSERT_NO_ERRNO_AND_VALUE(TempPath::CreateFileIn(root.path()));
const FileDescriptor root_fd =
FileDescriptor root_fd =
ASSERT_NO_ERRNO_AND_VALUE(Open(root.path(), O_RDONLY));
const FileDescriptor file1_fd =
FileDescriptor file1_fd =
ASSERT_NO_ERRNO_AND_VALUE(Open(file1.path(), O_RDWR));
FileDescriptor fd = ASSERT_NO_ERRNO_AND_VALUE(InotifyInit1(IN_NONBLOCK));
@@ -1091,6 +1091,11 @@ TEST(Inotify, ChmodGeneratesAttribEvent_NoRandomSave) {
ASSERT_THAT(fchmodat(root_fd.get(), file1_basename.c_str(), S_IWGRP, 0),
SyscallSucceeds());
verify_chmod_events();
// Make sure the chmod'ed file descriptors are destroyed before DisableSave
// is destructed.
root_fd.reset();
file1_fd.reset();
}
TEST(Inotify, TruncateGeneratesModifyEvent) {