diff options
author | Toshi Kikuchi <toshik@google.com> | 2020-11-16 13:11:36 -0800 |
---|---|---|
committer | gVisor bot <gvisor-bot@google.com> | 2020-11-16 13:13:47 -0800 |
commit | 373fd8310032ef19e05f8cc77a1eeb6fcb438da8 (patch) | |
tree | 1c85e1314d3ed45855a20fbb545e72977b75459d /test/packetimpact/tests/BUILD | |
parent | 758e45618f3d663a092b31baf29f24b3e4dc4d54 (diff) |
Add packetimpact tests for ICMPv6 Error message for fragment
Updates #4427
PiperOrigin-RevId: 342703931
Diffstat (limited to 'test/packetimpact/tests/BUILD')
-rw-r--r-- | test/packetimpact/tests/BUILD | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/test/packetimpact/tests/BUILD b/test/packetimpact/tests/BUILD index c30c77a17..33bd070c1 100644 --- a/test/packetimpact/tests/BUILD +++ b/test/packetimpact/tests/BUILD @@ -323,6 +323,20 @@ packetimpact_testbench( ) packetimpact_testbench( + name = "ipv6_fragment_icmp_error", + srcs = ["ipv6_fragment_icmp_error_test.go"], + deps = [ + "//pkg/tcpip", + "//pkg/tcpip/buffer", + "//pkg/tcpip/header", + "//pkg/tcpip/network/ipv6", + "//test/packetimpact/testbench", + "@com_github_google_go_cmp//cmp:go_default_library", + "@org_golang_x_sys//unix:go_default_library", + ], +) + +packetimpact_testbench( name = "udp_send_recv_dgram", srcs = ["udp_send_recv_dgram_test.go"], deps = [ |