diff options
author | Zhaozhong Ni <nzz@google.com> | 2019-01-28 11:57:45 -0800 |
---|---|---|
committer | Shentubot <shentubot@google.com> | 2019-01-28 11:59:43 -0800 |
commit | 196e9f9d82287e30380414f9a47a12c3cda56e41 (patch) | |
tree | d72d9fddf1834f46a227999eca01aa48886d6caf | |
parent | 52b3cd873dafcc114c00fd95111bcf57818b7903 (diff) |
Convert outdated TODO to NOTE.
PiperOrigin-RevId: 231263193
Change-Id: Ib732c9639462f7994d473050495d88c2855434af
-rw-r--r-- | test/syscalls/linux/sigprocmask.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/syscalls/linux/sigprocmask.cc b/test/syscalls/linux/sigprocmask.cc index d8b918446..ed6e33f16 100644 --- a/test/syscalls/linux/sigprocmask.cc +++ b/test/syscalls/linux/sigprocmask.cc @@ -232,7 +232,7 @@ TEST_F(SigProcMaskTest, SignalHandler) { EXPECT_THAT(raw_sigprocmask(SIG_UNBLOCK, &mask, nullptr), SyscallSucceeds()); // Check that the unblocked kTestSignal1 has been delivered. - // TODO: gvisor currently drops masked signals on the floor. + // Note: gvisor currently drops masked signals on the floor. if (!IsRunningOnGvisor()) { EXPECT_EQ(2, signal_count[kTestSignal1]); } |