test suite reviews and discussions
 help / color / mirror / Atom feed
* [dts] [PATCH V2 1/4] tests/kernelpf_iavf: modify code to adapt avx512
@ 2021-11-04  6:51 Xiang An
  2021-11-04  6:51 ` [dts] [PATCH V2 2/4] tests/vf_vlan: " Xiang An
                   ` (2 more replies)
  0 siblings, 3 replies; 7+ messages in thread
From: Xiang An @ 2021-11-04  6:51 UTC (permalink / raw)
  To: dts; +Cc: xiangx.an

Based on dpdk commit:4b64ccb328 modify dts code to adapt avx512.

Signed-off-by: Xiang An <xiangx.an@intel.com>
---
 tests/TestSuite_kernelpf_iavf.py | 12 +++++++++---
 1 file changed, 9 insertions(+), 3 deletions(-)

diff --git a/tests/TestSuite_kernelpf_iavf.py b/tests/TestSuite_kernelpf_iavf.py
index dde59e1..59d16ae 100644
--- a/tests/TestSuite_kernelpf_iavf.py
+++ b/tests/TestSuite_kernelpf_iavf.py
@@ -44,7 +44,7 @@ import time
 import framework.utils as utils
 from framework.packet import Packet
 from framework.pmd_output import PmdOutput
-from framework.settings import HEADER_SIZE
+from framework.settings import HEADER_SIZE, load_global_setting, DPDK_RXMODE_SETTING
 from framework.test_case import TestCase
 from framework.utils import RED
 from framework.virt_common import VM
@@ -774,7 +774,10 @@ class TestKernelpfIavf(TestCase):
         self.verify(bad_l4csum == 2, "Bad-ipcsum check error")
 
     def test_vf_hw_checksum_offload(self):
-        self.vm_testpmd.start_testpmd("all")
+        if load_global_setting(DPDK_RXMODE_SETTING) == 'avx512':
+            self.vm_testpmd.start_testpmd("all", "--enable-rx-cksum")
+        else:
+            self.vm_testpmd.start_testpmd("all")
         self.enable_hw_checksum()
         self.vm_testpmd.execute_cmd("port start all")
         self.vm_testpmd.execute_cmd("set verbose 1")
@@ -782,7 +785,10 @@ class TestKernelpfIavf(TestCase):
         self.checksum_verify()
 
     def test_vf_sw_checksum_offload(self):
-        self.vm_testpmd.start_testpmd("all")
+        if load_global_setting(DPDK_RXMODE_SETTING) == 'avx512':
+            self.vm_testpmd.start_testpmd("all", "--enable-rx-cksum")
+        else:
+            self.vm_testpmd.start_testpmd("all")
         self.enable_sw_checksum()
         self.vm_testpmd.execute_cmd("port start all")
         self.vm_testpmd.execute_cmd("start")
-- 
1.8.3.1


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

end of thread, other threads:[~2021-11-05 13:24 UTC | newest]

Thread overview: 7+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-11-04  6:51 [dts] [PATCH V2 1/4] tests/kernelpf_iavf: modify code to adapt avx512 Xiang An
2021-11-04  6:51 ` [dts] [PATCH V2 2/4] tests/vf_vlan: " Xiang An
2021-11-05 12:31   ` Tu, Lijuan
2021-11-04  6:51 ` [dts] [PATCH V2 3/4] tests/l3fwdacl: " Xiang An
2021-11-05 13:24   ` Tu, Lijuan
2021-11-04  6:51 ` [dts] [PATCH V2 4/4] tests/unit_tests_eal: " Xiang An
2021-11-05 13:22   ` 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).