From patchwork Fri Sep 11 02:19:24 2020 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: "Xie, WeiX" X-Patchwork-Id: 77295 Return-Path: X-Original-To: patchwork@inbox.dpdk.org Delivered-To: patchwork@inbox.dpdk.org Received: from dpdk.org (dpdk.org [92.243.14.124]) by inbox.dpdk.org (Postfix) with ESMTP id 56D7DA04B6; Fri, 11 Sep 2020 04:19:56 +0200 (CEST) Received: from [92.243.14.124] (localhost [127.0.0.1]) by dpdk.org (Postfix) with ESMTP id CD7721C0CF; Fri, 11 Sep 2020 04:19:55 +0200 (CEST) Received: from mga05.intel.com (mga05.intel.com [192.55.52.43]) by dpdk.org (Postfix) with ESMTP id E083A1B75C for ; Fri, 11 Sep 2020 04:19:54 +0200 (CEST) IronPort-SDR: N8NgAvMndNXmzixlNC2qWxOrJq7m9r20aqL7u3hZIKgvqUSTZutHQcme6GcjslNdrre37yQq5N Fa1oYrinVkvw== X-IronPort-AV: E=McAfee;i="6000,8403,9740"; a="243499346" X-IronPort-AV: E=Sophos;i="5.76,413,1592895600"; d="scan'208";a="243499346" X-Amp-Result: SKIPPED(no attachment in message) X-Amp-File-Uploaded: False Received: from orsmga002.jf.intel.com ([10.7.209.21]) by fmsmga105.fm.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 10 Sep 2020 19:19:54 -0700 IronPort-SDR: DoLoaxPujo1623b/o0eJePmjPdFSCgfjy5WiolcQ/tGNuJf8sFP66KgEGnHHkAmoZi4NW3rYl8 XcNCIZnAsfyg== X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.76,413,1592895600"; d="scan'208";a="318126639" Received: from unknown (HELO localhost.localdomain) ([10.240.183.80]) by orsmga002.jf.intel.com with ESMTP; 10 Sep 2020 19:19:53 -0700 From: Xie wei To: dts@dpdk.org Cc: Xie wei Date: Fri, 11 Sep 2020 10:19:24 +0800 Message-Id: <20200911021928.8224-2-weix.xie@intel.com> X-Mailer: git-send-email 2.17.1 In-Reply-To: <20200911021928.8224-1-weix.xie@intel.com> References: <20200911021928.8224-1-weix.xie@intel.com> Subject: [dts] [PATCH V1 1/5] tests/TestSuite_cvl_advanced_rss:support meson build method 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" Signed-off-by: Xie wei --- tests/TestSuite_cvl_advanced_rss.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/TestSuite_cvl_advanced_rss.py b/tests/TestSuite_cvl_advanced_rss.py index 44c8b23..03ad6b0 100644 --- a/tests/TestSuite_cvl_advanced_rss.py +++ b/tests/TestSuite_cvl_advanced_rss.py @@ -851,7 +851,7 @@ class AdvancedRSSTest(TestCase): #Prepare testpmd EAL and parameters all_eal_param = self.dut.create_eal_parameters(ports=[self.pf_pci]) print(all_eal_param) #print eal parameters - command = "./%s/app/testpmd %s -- -i %s" % (self.dut.target, all_eal_param, "--rxq=64 --txq=64") + command = self.dut.apps_name['test-pmd'] + all_eal_param + " -- -i --rxq=64 --txq=64" return command def _rte_flow_validate_pattern(self, test_vectors, command, is_vxlan):