[V1] tests/TestSuite_external_memory:Modify the hard coded appparameter

Message ID 20201210113041.22140-1-junx.w.zhou@intel.com (mailing list archive)
State Accepted
Headers
Series [V1] tests/TestSuite_external_memory:Modify the hard coded appparameter |

Commit Message

Zhou, JunX W Dec. 10, 2020, 11:30 a.m. UTC
  Modify the hard coded app parameter to call the platform interface

Signed-off-by: Zhou Jun <junx.w.zhou@intel.com>
---
 tests/TestSuite_external_memory.py | 27 +++++++++++++++------------
 1 file changed, 15 insertions(+), 12 deletions(-)
  

Comments

Tu, Lijuan Dec. 15, 2020, 5:55 a.m. UTC | #1
> Modify the hard coded app parameter to call the platform interface
> 
> Signed-off-by: Zhou Jun <junx.w.zhou@intel.com>

Applied
  

Patch

diff --git a/tests/TestSuite_external_memory.py b/tests/TestSuite_external_memory.py
index f899ae74..53522a79 100644
--- a/tests/TestSuite_external_memory.py
+++ b/tests/TestSuite_external_memory.py
@@ -46,11 +46,9 @@  class TestExternalMemory(TestCase):
         """
         Run at the start of each test suite.
         """
-
         self.dut_ports = self.dut.get_ports(self.nic)
         self.verify(len(self.dut_ports) >= 2, "Insufficient ports")
-        cores = self.dut.get_core_list("1S/4C/1T")
-        self.coremask = utils.create_mask(cores)
+
         self.app_testpmd_path = self.dut.apps_name['test-pmd']
 
     def set_up(self):
@@ -93,8 +91,9 @@  class TestExternalMemory(TestCase):
         Verifier IGB_UIO and anonymous memory allocation
         """
         self.insmod_modprobe(modename="igb_uio")
-
-        cmd = "./%s -c %s -n 4 -- --mp-alloc=xmem -i" % (self.app_testpmd_path, self.coremask)
+        self.eal_para = self.dut.create_eal_parameters(cores="1S/4C/1T")
+        self.dut.send_expect(r'./%s %s -- --mp-alloc=xmem -i'
+                             % (self.app_testpmd_path, self.eal_para), "link state change event", 60)
 
         self.dut.send_expect(cmd,"testpmd>",60)
         self.verifier_result()
@@ -104,9 +103,9 @@  class TestExternalMemory(TestCase):
         Verifier IGB_UIO and anonymous hugepage memory allocation
         """
         self.insmod_modprobe(modename="igb_uio")
-        cmd = "./%s -c %s -n 4 -- --mp-alloc=xmemhuge -i" % (self.app_testpmd_path, self.coremask)
-
-        self.dut.send_expect(cmd,"testpmd>",60)
+        self.eal_para = self.dut.create_eal_parameters(cores="1S/4C/1T")
+        self.dut.send_expect(r'./%s %s -- --mp-alloc=xmemhuge -i'
+                             % (self.app_testpmd_path, self.eal_para), "link state change event", 60)
         self.verifier_result()
 
     def test_VFIO_PCI_xmem(self):
@@ -114,8 +113,10 @@  class TestExternalMemory(TestCase):
         Verifier VFIO_PCI and anonymous memory allocation
         """
         self.insmod_modprobe(modename="vfio-pci")
-        cmd = "./%s -c %s -n 4 -- --mp-alloc=xmem -i" % (self.app_testpmd_path, self.coremask)
-        self.dut.send_expect(cmd,"testpmd>",60)
+
+        self.eal_para = self.dut.create_eal_parameters(cores="1S/4C/1T")
+        self.dut.send_expect(r'./%s %s -- --mp-alloc=xmem -i'
+                             % (self.app_testpmd_path, self.eal_para),"testpmd>",60)
 
         self.verifier_result()
 
@@ -124,8 +125,10 @@  class TestExternalMemory(TestCase):
         Verifier VFIO and anonymous hugepage memory allocation
         """
         self.insmod_modprobe(modename="vfio-pci")
-        cmd = "./%s -c %s -n 4 -- --mp-alloc=xmemhuge -i" % (self.app_testpmd_path, self.coremask)
-        self.dut.send_expect(cmd,"testpmd>",60)
+
+        self.eal_para = self.dut.create_eal_parameters(cores="1S/4C/1T")
+        self.dut.send_expect(r'./%s %s -- --mp-alloc=xmemhuge -i'
+                             % (self.app_testpmd_path, self.eal_para),"testpmd>",60)
 
         self.verifier_result()