diff options
author | Zeling Feng <zeling@google.com> | 2021-03-16 16:57:31 -0700 |
---|---|---|
committer | gVisor bot <gvisor-bot@google.com> | 2021-03-16 16:59:26 -0700 |
commit | 3dd7ad13b4586791cdc1c1efdef90760a7deff8e (patch) | |
tree | d14c20b3288222bb19d607da58704eb3403f1340 /test/packetimpact/runner | |
parent | 5eede4e7563e245a685d6529dffddbf9c3a53f50 (diff) |
Fix tcp_fin_retransmission_netstack_test
Netstack does not check ACK number for FIN-ACK packets and goes into TIMEWAIT
unconditionally. Fixing the state machine will give us back the retransmission
of FIN.
PiperOrigin-RevId: 363301883
Diffstat (limited to 'test/packetimpact/runner')
-rw-r--r-- | test/packetimpact/runner/defs.bzl | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/test/packetimpact/runner/defs.bzl b/test/packetimpact/runner/defs.bzl index 567f64c41..803a87a07 100644 --- a/test/packetimpact/runner/defs.bzl +++ b/test/packetimpact/runner/defs.bzl @@ -289,8 +289,6 @@ ALL_TESTS = [ ), PacketimpactTestInfo( name = "tcp_fin_retransmission", - # TODO(b/181625316): Fix netstack then remove the line below. - expect_netstack_failure = True, ), ] |