Remove obsolete gVisor-specific test condition.

PiperOrigin-RevId: 231274510
Change-Id: I8f65157dbe18dae1c6235147fc4d27e0c844c833
This commit is contained in:
Jamie Liu
2019-01-28 13:03:07 -08:00
committed by Shentubot
parent 196e9f9d82
commit 9114471a5a
+1 -4
View File
@@ -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]);
}