[V1] tests/inline_ipsec: add -nn for tcpdump

Message ID 20220531063212.332642-1-songx.jiale@intel.com (mailing list archive)
State Accepted
Headers
Series [V1] tests/inline_ipsec: add -nn for tcpdump |

Checks

Context Check Description
ci/Intel-dts-suite-test warning SKIPPED

Commit Message

Jiale, SongX May 31, 2022, 6:32 a.m. UTC
  tcpdump timeout, increase the '-nn' to skip the DNS reverse domain name resolution operation.

Signed-off-by: Jiale Song <songx.jiale@intel.com>
---
 tests/TestSuite_inline_ipsec.py | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
  

Comments

Tu, Lijuan June 15, 2022, 8:39 a.m. UTC | #1
On Tue, 31 May 2022 14:32:12 +0800, Jiale Song <songx.jiale@intel.com> wrote:
> tcpdump timeout, increase the '-nn' to skip the DNS reverse domain name resolution operation.
> 
> Signed-off-by: Jiale Song <songx.jiale@intel.com>


Applied, thanks
  

Patch

diff --git a/tests/TestSuite_inline_ipsec.py b/tests/TestSuite_inline_ipsec.py
index 474e616a..31c8bb8d 100644
--- a/tests/TestSuite_inline_ipsec.py
+++ b/tests/TestSuite_inline_ipsec.py
@@ -253,7 +253,7 @@  class TestInlineIpsec(TestCase):
             session_receive2 = self.tester.create_session(
                 name="receive_encryption_package2"
             )
-            session_receive2.send_expect("tcpdump -Xvvvi %s -c 1" % rxItf, "", 10)
+            session_receive2.send_expect("tcpdump -nn -Xvvvi %s -c 1" % rxItf, "", 10)
             send_package = self.send_encryption_package(
                 txItf, paysize, do_encrypt, send_spi, count, inner_dst, sa_src, sa_dst
             )
@@ -468,7 +468,7 @@  class TestInlineIpsec(TestCase):
         session_receive3 = self.tester.create_session(
             "check_forward_encryption_package"
         )
-        session_receive3.send_expect("tcpdump -Xvvvi %s -c 1" % self.rxItf, "", 30)
+        session_receive3.send_expect("tcpdump -nn -Xvvvi %s -c 1" % self.rxItf, "", 30)
         time.sleep(2)
         sendp(eth_e1, iface=self.rxItf, count=2)
         sendp(eth_e2, iface=self.txItf, count=1)