From 06b047a5a8acbfc910e7e824272919d8ccd8976b Mon Sep 17 00:00:00 2001 From: Zeling Feng Date: Mon, 15 Mar 2021 10:45:56 -0700 Subject: Packetimpact test for ACK to OTW Seq segments behavior in CLOSING TCP, in CLOSING state, MUST send an ACK with next expected SEQ number after receiving any segment with OTW SEQ number and remain in the same state. While I am here, I also changed shutdown to behave the same as other calls in posix_server. PiperOrigin-RevId: 362976955 --- test/packetimpact/runner/defs.bzl | 15 +++++++++++++++ 1 file changed, 15 insertions(+) (limited to 'test/packetimpact/runner/defs.bzl') diff --git a/test/packetimpact/runner/defs.bzl b/test/packetimpact/runner/defs.bzl index 8ce5edf2b..567f64c41 100644 --- a/test/packetimpact/runner/defs.bzl +++ b/test/packetimpact/runner/defs.bzl @@ -202,6 +202,11 @@ ALL_TESTS = [ PacketimpactTestInfo( name = "tcp_outside_the_window", ), + PacketimpactTestInfo( + name = "tcp_outside_the_window_closing", + # TODO(b/181625316): Fix netstack then merge into tcp_outside_the_window. + expect_netstack_failure = True, + ), PacketimpactTestInfo( name = "tcp_noaccept_close_rst", ), @@ -211,6 +216,11 @@ ALL_TESTS = [ PacketimpactTestInfo( name = "tcp_unacc_seq_ack", ), + PacketimpactTestInfo( + name = "tcp_unacc_seq_ack_closing", + # TODO(b/181625316): Fix netstack then merge into tcp_unacc_seq_ack. + expect_netstack_failure = True, + ), PacketimpactTestInfo( name = "tcp_paws_mechanism", # TODO(b/156682000): Fix netstack then remove the line below. @@ -277,6 +287,11 @@ ALL_TESTS = [ PacketimpactTestInfo( name = "tcp_info", ), + PacketimpactTestInfo( + name = "tcp_fin_retransmission", + # TODO(b/181625316): Fix netstack then remove the line below. + expect_netstack_failure = True, + ), ] def validate_all_tests(): -- cgit v1.2.3