diff options
author | gVisor bot <gvisor-bot@google.com> | 2020-06-05 20:44:01 -0700 |
---|---|---|
committer | gVisor bot <gvisor-bot@google.com> | 2020-06-05 20:44:01 -0700 |
commit | 427d2082165e0949a00631a50cf5f6834d3d626d (patch) | |
tree | 5a5cb8daff299acbbc547b40d20c68771280b47a /test/iptables/iptables_test.go | |
parent | 21b6bc7280f68f43360a008ffd02a4f461ec9fc8 (diff) | |
parent | 74a7d76c9777820fcd7bd6002481eb959f58e247 (diff) |
Merge pull request #2872 from kevinGC:ipt-skip-prerouting
PiperOrigin-RevId: 315041419
Diffstat (limited to 'test/iptables/iptables_test.go')
-rw-r--r-- | test/iptables/iptables_test.go | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/test/iptables/iptables_test.go b/test/iptables/iptables_test.go index 172ad9e16..38319a3b2 100644 --- a/test/iptables/iptables_test.go +++ b/test/iptables/iptables_test.go @@ -303,6 +303,10 @@ func TestNATRedirectRequiresProtocol(t *testing.T) { singleTest(t, NATRedirectRequiresProtocol{}) } +func TestNATLoopbackSkipsPrerouting(t *testing.T) { + singleTest(t, NATLoopbackSkipsPrerouting{}) +} + func TestInputSource(t *testing.T) { singleTest(t, FilterInputSource{}) } |