Message ID | 20201208100627.9792-22-junx.w.zhou@intel.com (mailing list archive) |
---|---|
State | Accepted |
Headers | show |
Series | Modify the hard coded app parameter to call the platform interface | expand |
diff --git a/tests/TestSuite_queue_start_stop.py b/tests/TestSuite_queue_start_stop.py index 77b25607..75718c8c 100644 --- a/tests/TestSuite_queue_start_stop.py +++ b/tests/TestSuite_queue_start_stop.py @@ -130,8 +130,9 @@ class TestQueueStartStop(TestCase): queue start/stop test """ #dpdk start + eal_para = self.dut.create_eal_parameters() try: - self.dut.send_expect("%s -c 0xf -n 4 -- -i --portmask=0x1 --port-topology=loop" % self.app_testpmd_path, "testpmd>", 120) + self.dut.send_expect("%s %s -- -i --portmask=0x1 --port-topology=loop" % (self.app_testpmd_path, eal_para), "testpmd>", 120) time.sleep(5) self.dut.send_expect("set fwd mac", "testpmd>") self.dut.send_expect("start", "testpmd>")
Signed-off-by: Zhou Jun <junx.w.zhou@intel.com> --- tests/TestSuite_queue_start_stop.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-)