[dts] [PATCH V1] tests/TestSuite_perf_vm2vm_virtio_net_perf: Adapt dpdk changes

JiangYuX yux.jiang at intel.com
Tue Oct 27 12:33:11 CET 2020


From: JiangYu <yux.jiang at intel.com>

Based on DPDK commit e8a83681f: Enable MEMCPY_AVX512 as before.

Signed-off-by: JiangYu <yux.jiang at intel.com>
---
 tests/TestSuite_perf_vm2vm_virtio_net_perf.py | 11 +++++++++++
 1 file changed, 11 insertions(+)

diff --git a/tests/TestSuite_perf_vm2vm_virtio_net_perf.py b/tests/TestSuite_perf_vm2vm_virtio_net_perf.py
index 4bf86c5..7116eec 100644
--- a/tests/TestSuite_perf_vm2vm_virtio_net_perf.py
+++ b/tests/TestSuite_perf_vm2vm_virtio_net_perf.py
@@ -76,6 +76,8 @@ class TestPerfVM2VMVirtioNetPerf(TestCase):
         self.json_obj = dict()
         self.save_result_flag = True
         self.path=self.dut.apps_name['test-pmd']
+        if self.dut.build_type == 'meson':
+            self.build_pmd_bond(self.dut)
 
     def set_up(self):
         """
@@ -91,6 +93,13 @@ class TestPerfVM2VMVirtioNetPerf(TestCase):
         self.table_header = ['Mode', 'Type', 'TXD/RXD', 'Throughput', 'Expected Throughput',
                              'Throughput Difference']
 
+    def build_pmd_bond(self, user_dut):
+        user_dut.set_build_options({'RTE_MEMCPY_AVX512': 'y'})
+        user_dut.build_install_dpdk(self.target)
+
+    def restore_env(self, user_dut):
+        user_dut.build_install_dpdk(self.target)
+
     def handle_expected(self):
         """
         Update expected numbers to configurate file: conf/$suite_name.cfg
@@ -364,5 +373,7 @@ class TestPerfVM2VMVirtioNetPerf(TestCase):
         Run after each test suite.
 
         """
+        if self.dut.build_type == 'meson':
+            self.restore_env(self.dut)
         if getattr(self, 'vhost', None):
             self.dut.close_session(self.vhost)
-- 
2.7.4



More information about the dts mailing list