diff options
author | Nayana Bidari <nybidari@google.com> | 2021-02-17 14:23:15 -0800 |
---|---|---|
committer | gVisor bot <gvisor-bot@google.com> | 2021-02-17 14:25:29 -0800 |
commit | 3145fe1d1e99746fe39aa68e6e00f77f6fd27fb9 (patch) | |
tree | b6e5881c52757cdfaa0dac1d63475d29eb291e8d /test/packetimpact/tests/BUILD | |
parent | 0e0bc35879982ace060bd7d32f91732bfaf990a9 (diff) |
Use TCP_INFO to get RTO in tcp_retransmits_test
- TCP_INFO is used to get the RTO instead of calculating it manually.
PiperOrigin-RevId: 358032487
Diffstat (limited to 'test/packetimpact/tests/BUILD')
-rw-r--r-- | test/packetimpact/tests/BUILD | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/test/packetimpact/tests/BUILD b/test/packetimpact/tests/BUILD index 7414a947a..3e27f50dc 100644 --- a/test/packetimpact/tests/BUILD +++ b/test/packetimpact/tests/BUILD @@ -103,7 +103,10 @@ packetimpact_testbench( name = "tcp_retransmits", srcs = ["tcp_retransmits_test.go"], deps = [ + "//pkg/abi/linux", + "//pkg/binary", "//pkg/tcpip/header", + "//pkg/usermem", "//test/packetimpact/testbench", "@org_golang_x_sys//unix:go_default_library", ], |