diff options
author | gVisor bot <gvisor-bot@google.com> | 2020-04-14 11:04:30 -0700 |
---|---|---|
committer | gVisor bot <gvisor-bot@google.com> | 2020-04-14 11:05:38 -0700 |
commit | 81c44c4cd7cfa121d9ef028db18b3ee550845811 (patch) | |
tree | 9a9e500605e4d504fd4766fa1a15c9476c910e53 /test/packetimpact/tests/BUILD | |
parent | 82530e4c3029691c43de288e3efcf0c4c3129e14 (diff) |
Test TCP should piggyback ACK in ESTAB state
TCP, in ESTABLISHED state, SHOULD piggyback acknowledgement with a segment being
transmitted (whenever possible) without incurring undue delay
PiperOrigin-RevId: 306474550
Diffstat (limited to 'test/packetimpact/tests/BUILD')
-rw-r--r-- | test/packetimpact/tests/BUILD | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/test/packetimpact/tests/BUILD b/test/packetimpact/tests/BUILD index 956b1addf..308590162 100644 --- a/test/packetimpact/tests/BUILD +++ b/test/packetimpact/tests/BUILD @@ -52,6 +52,18 @@ packetimpact_go_test( ], ) +packetimpact_go_test( + name = "tcp_should_piggyback", + srcs = ["tcp_should_piggyback_test.go"], + # TODO(b/153680566): Fix netstack then remove the line below. + netstack = False, + deps = [ + "//pkg/tcpip/header", + "//test/packetimpact/testbench", + "@org_golang_x_sys//unix:go_default_library", + ], +) + sh_binary( name = "test_runner", srcs = ["test_runner.sh"], |