diff options
author | Jamie Liu <jamieliu@google.com> | 2019-01-28 13:02:04 -0800 |
---|---|---|
committer | Shentubot <shentubot@google.com> | 2019-01-28 13:03:07 -0800 |
commit | 9114471a5a5428bd8858d291811249314473d12d (patch) | |
tree | 7db6a4ca4d8549ed617fd4bb130a0167118796cb /test/syscalls/linux | |
parent | 196e9f9d82287e30380414f9a47a12c3cda56e41 (diff) |
Remove obsolete gVisor-specific test condition.
PiperOrigin-RevId: 231274510
Change-Id: I8f65157dbe18dae1c6235147fc4d27e0c844c833
Diffstat (limited to 'test/syscalls/linux')
-rw-r--r-- | test/syscalls/linux/sigprocmask.cc | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/test/syscalls/linux/sigprocmask.cc b/test/syscalls/linux/sigprocmask.cc index ed6e33f16..1aea1ecb8 100644 --- a/test/syscalls/linux/sigprocmask.cc +++ b/test/syscalls/linux/sigprocmask.cc @@ -232,10 +232,7 @@ TEST_F(SigProcMaskTest, SignalHandler) { EXPECT_THAT(raw_sigprocmask(SIG_UNBLOCK, &mask, nullptr), SyscallSucceeds()); // Check that the unblocked kTestSignal1 has been delivered. - // Note: gvisor currently drops masked signals on the floor. - if (!IsRunningOnGvisor()) { - EXPECT_EQ(2, signal_count[kTestSignal1]); - } + EXPECT_EQ(2, signal_count[kTestSignal1]); EXPECT_EQ(2, signal_count[kTestSignal2]); } |