From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from dpdk.org (dpdk.org [92.243.14.124]) by inbox.dpdk.org (Postfix) with ESMTP id AEE47A051C; Sat, 18 Jan 2020 09:32:54 +0100 (CET) Received: from [92.243.14.124] (localhost [127.0.0.1]) by dpdk.org (Postfix) with ESMTP id A0DAD3253; Sat, 18 Jan 2020 09:32:54 +0100 (CET) Received: from mga14.intel.com (mga14.intel.com [192.55.52.115]) by dpdk.org (Postfix) with ESMTP id 3E2C02C6D for ; Sat, 18 Jan 2020 09:32:51 +0100 (CET) X-Amp-Result: SKIPPED(no attachment in message) X-Amp-File-Uploaded: False Received: from fmsmga002.fm.intel.com ([10.253.24.26]) by fmsmga103.fm.intel.com with ESMTP/TLS/DHE-RSA-AES256-GCM-SHA384; 18 Jan 2020 00:32:49 -0800 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.70,333,1574150400"; d="scan'208";a="258112067" Received: from unknown (HELO dpdk-wenjielx-dtspatch135.sh.intel.com) ([10.240.176.135]) by fmsmga002.fm.intel.com with ESMTP; 18 Jan 2020 00:32:49 -0800 From: "zhu,shuai" To: dts@dpdk.org Cc: yinan.wang@intel.com, "zhu,shuai" Date: Sat, 18 Jan 2020 16:38:06 +0800 Message-Id: <1579336692-98775-3-git-send-email-shuaix.zhu@intel.com> X-Mailer: git-send-email 1.9.3 In-Reply-To: <1579336692-98775-1-git-send-email-shuaix.zhu@intel.com> References: <1579336692-98775-1-git-send-email-shuaix.zhu@intel.com> Subject: [dts] [PATCH V1 3/9] tests/vhost_event_idx_interrupt:add create_eal_parameters function. X-BeenThere: dts@dpdk.org X-Mailman-Version: 2.1.15 Precedence: list List-Id: test suite reviews and discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: dts-bounces@dpdk.org Sender: "dts" add create_eal_parameters function. Signed-off-by: zhu,shuai --- tests/TestSuite_vhost_event_idx_interrupt.py | 12 +++++------- 1 file changed, 5 insertions(+), 7 deletions(-) diff --git a/tests/TestSuite_vhost_event_idx_interrupt.py b/tests/TestSuite_vhost_event_idx_interrupt.py index 9676ed7..abbdc42 100644 --- a/tests/TestSuite_vhost_event_idx_interrupt.py +++ b/tests/TestSuite_vhost_event_idx_interrupt.py @@ -52,6 +52,7 @@ class TestVhostEventIdxInterrupt(TestCase): self.queues = 1 self.cores_num = len([n for n in self.dut.cores if int(n['socket']) == 0]) self.prepare_l3fwd_power() + self.pci_info = self.dut.ports_info[0]['pci'] self.base_dir = self.dut.base_dir.replace('~', '/root') def set_up(self): @@ -73,7 +74,6 @@ class TestVhostEventIdxInterrupt(TestCase): "There has not enought cores to test this case %s" % self.running_case) self.core_list_l3fwd = self.dut.get_core_list(self.core_config) - self.core_mask_l3fwd = utils.create_mask(self.core_list_l3fwd) def prepare_l3fwd_power(self): self.dut.send_expect("cp ./examples/l3fwd-power/main.c .", "#") @@ -106,12 +106,10 @@ class TestVhostEventIdxInterrupt(TestCase): port_info = "0x1" if self.vm_num == 1 else "0x3" - command_client = "./examples/l3fwd-power/build/app/l3fwd-power " + \ - "-c %s -n %d --socket-mem 1024,1024 --legacy-mem --no-pci " + \ - "--log-level=9 %s -- -p %s --parse-ptype 1 --config '%s' " - command_line_client = command_client % ( - self.core_mask_l3fwd, self.dut.get_memory_channels(), - vdev_info, port_info, config_info) + example_para = "./examples/l3fwd-power/build/app/l3fwd-power " + para = " --log-level=9 %s -- -p %s --parse-ptype 1 --config '%s'" % (vdev_info, port_info, config_info) + eal_params = self.dut.create_eal_parameters(cores=self.core_list_l3fwd, no_pci=True, ports=[self.pci_info]) + command_line_client = example_para + eal_params + para self.vhost.get_session_before(timeout=2) self.vhost.send_expect(command_line_client, "POWER", 40) time.sleep(10) -- 2.17.2