diff options
author | Kevin Krakauer <krakauer@google.com> | 2020-09-18 12:19:02 -0700 |
---|---|---|
committer | gVisor bot <gvisor-bot@google.com> | 2020-09-18 12:20:36 -0700 |
commit | f911b43f05f88807a1e36adc6ab3b7c8cf8ec2ee (patch) | |
tree | 2de488a5879a313860e171adc10f2d2bf29e2107 | |
parent | ddf37cb19f373ae47836db97349013081cc857b4 (diff) |
Remove SKIP_IF for now-supported features.
Updates #3549.
PiperOrigin-RevId: 332501660
-rw-r--r-- | test/syscalls/linux/ip6tables.cc | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/test/syscalls/linux/ip6tables.cc b/test/syscalls/linux/ip6tables.cc index 78e1fa09d..97297ee2b 100644 --- a/test/syscalls/linux/ip6tables.cc +++ b/test/syscalls/linux/ip6tables.cc @@ -87,8 +87,6 @@ TEST(IP6TablesBasic, GetEntriesErrorPrecedence) { // empty when running in native, but we can test that gVisor has the same // initial state that a newly-booted Linux machine would have. TEST(IP6TablesTest, InitialInfo) { - // TODO(gvisor.dev/issue/3549): Enable for ip6tables. - SKIP_IF(true); SKIP_IF(!ASSERT_NO_ERRNO_AND_VALUE(HaveCapability(CAP_NET_RAW))); FileDescriptor sock = @@ -132,8 +130,6 @@ TEST(IP6TablesTest, InitialInfo) { // are empty when running in native, but we can test that gVisor has the same // initial state that a newly-booted Linux machine would have. TEST(IP6TablesTest, InitialEntries) { - // TODO(gvisor.dev/issue/3549): Enable for ip6tables. - SKIP_IF(true); SKIP_IF(!ASSERT_NO_ERRNO_AND_VALUE(HaveCapability(CAP_NET_RAW))); FileDescriptor sock = |