summaryrefslogtreecommitdiffhomepage
path: root/test
diff options
context:
space:
mode:
authorZhaozhong Ni <nzz@google.com>2019-01-28 11:57:45 -0800
committerShentubot <shentubot@google.com>2019-01-28 11:59:43 -0800
commit196e9f9d82287e30380414f9a47a12c3cda56e41 (patch)
treed72d9fddf1834f46a227999eca01aa48886d6caf /test
parent52b3cd873dafcc114c00fd95111bcf57818b7903 (diff)
Convert outdated TODO to NOTE.
PiperOrigin-RevId: 231263193 Change-Id: Ib732c9639462f7994d473050495d88c2855434af
Diffstat (limited to 'test')
-rw-r--r--test/syscalls/linux/sigprocmask.cc2
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]);
}