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 67499A04B5; Fri, 11 Sep 2020 04:20:01 +0200 (CEST) Received: from [92.243.14.124] (localhost [127.0.0.1]) by dpdk.org (Postfix) with ESMTP id 581411C0DC; Fri, 11 Sep 2020 04:20:01 +0200 (CEST) Received: from mga05.intel.com (mga05.intel.com [192.55.52.43]) by dpdk.org (Postfix) with ESMTP id 6C3C21C0DC for ; Fri, 11 Sep 2020 04:19:59 +0200 (CEST) IronPort-SDR: N/MERIIFL7yrRR64bVCwXefpxQHtUqL94RFnxWrDua6ya8KgsTn0+spIdz06whHZ8VX6yXahdb xoGIARsruVzA== X-IronPort-AV: E=McAfee;i="6000,8403,9740"; a="243499355" X-IronPort-AV: E=Sophos;i="5.76,413,1592895600"; d="scan'208";a="243499355" 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:59 -0700 IronPort-SDR: klR/lpglHxOo6JRfhtIWLnKxf4plXMI2dyXrDFT5GlR4PD9diPvRANrH0np8jwsnhKRjIccdh/ JBiEM3Id9qaQ== X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.76,413,1592895600"; d="scan'208";a="318126676" Received: from unknown (HELO localhost.localdomain) ([10.240.183.80]) by orsmga002.jf.intel.com with ESMTP; 10 Sep 2020 19:19:57 -0700 From: Xie wei To: dts@dpdk.org Cc: Xie wei Date: Fri, 11 Sep 2020 10:19:27 +0800 Message-Id: <20200911021928.8224-5-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 4/5] tests/TestSuite_cvl_rss_configure: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_rss_configure.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/TestSuite_cvl_rss_configure.py b/tests/TestSuite_cvl_rss_configure.py index c8ca6d5..65b4d57 100644 --- a/tests/TestSuite_cvl_rss_configure.py +++ b/tests/TestSuite_cvl_rss_configure.py @@ -202,7 +202,7 @@ class RSSConfigureTest(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=10 --txq=10" + line_option) + command = self.dut.apps_name['test-pmd'] + all_eal_param + " -- -i --rxq=10 --txq=10" + line_option return command def _rss_validate_pattern(self, test_vectors, command, rss_type, is_rss): -- 2.17.1