test suite reviews and discussions
 help / color / mirror / Atom feed
* [dts] [PATCH] [PATCH]tests/Test_mtu_update:tests/Test_mtu_update start testpmd with extra parameters on melx
@ 2020-12-22 20:19 David Liu
  2020-12-23  3:00 ` Tu, Lijuan
  0 siblings, 1 reply; 2+ messages in thread
From: David Liu @ 2020-12-22 20:19 UTC (permalink / raw)
  To: dts; +Cc: lijuan.tu, lylavoie, dliu

Fix only tx ports are being configurated

Fix package import

melx machine need different parameters to start testpmd

Signed-off-by: David Liu <dliu@iol.unh.edu>
---
 tests/TestSuite_mtu_update.py | 12 +++++++++---
 1 file changed, 9 insertions(+), 3 deletions(-)

diff --git a/tests/TestSuite_mtu_update.py b/tests/TestSuite_mtu_update.py
index 6e425dcb..4fe697b4 100644
--- a/tests/TestSuite_mtu_update.py
+++ b/tests/TestSuite_mtu_update.py
@@ -51,8 +51,8 @@ import time
 from test_case import TestCase
 from pktgen import TRANSMIT_CONT
 
-from framework.packet import Packet
-from framework.settings import HEADER_SIZE
+from packet import Packet
+from settings import HEADER_SIZE
 
 ETHER_HEADER_LEN = 18
 IP_HEADER_LEN = 20
@@ -208,6 +208,7 @@ class TestMtuUpdate(TestCase):
         @return: None
         """
         self.admin_tester_port(self.tester.get_local_port(self.tx_port), f"mtu {mtu:d}")
+        self.admin_tester_port(self.tester.get_local_port(self.rx_port), f"mtu {mtu:d}")
     #
     #
     #
@@ -220,7 +221,12 @@ class TestMtuUpdate(TestCase):
         """
         self.set_mtu(packet_size + 1)
 
-        self.pmdout.start_testpmd("Default")
+        if self.kdriver == "mlx5_core" or self.kdriver == "mlx4_core":
+        # Mellanox will need extra options to start testpmd
+            self.pmdout.start_testpmd("Default", "--max-pkt-len=9500 --tx-offloads=0x8000 --enable-scatter -a")
+        else:
+            self.pmdout.start_testpmd("Default")
+        
         self.exec("port stop all")
         self.exec(f"port config mtu 0 {packet_size:d}")
         self.exec(f"port config mtu 1 {packet_size:d}")
-- 
2.17.1


^ permalink raw reply	[flat|nested] 2+ messages in thread

* Re: [dts] [PATCH] [PATCH]tests/Test_mtu_update:tests/Test_mtu_update start testpmd with extra parameters on melx
  2020-12-22 20:19 [dts] [PATCH] [PATCH]tests/Test_mtu_update:tests/Test_mtu_update start testpmd with extra parameters on melx David Liu
@ 2020-12-23  3:00 ` Tu, Lijuan
  0 siblings, 0 replies; 2+ messages in thread
From: Tu, Lijuan @ 2020-12-23  3:00 UTC (permalink / raw)
  To: David Liu, dts; +Cc: lylavoie

> Fix only tx ports are being configurated
> 
> Fix package import
> 
> melx machine need different parameters to start testpmd
> 
> Signed-off-by: David Liu <dliu@iol.unh.edu>

Applied with commit message changed

^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2020-12-23  3:00 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2020-12-22 20:19 [dts] [PATCH] [PATCH]tests/Test_mtu_update:tests/Test_mtu_update start testpmd with extra parameters on melx David Liu
2020-12-23  3:00 ` Tu, Lijuan

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).