From patchwork Fri Sep 11 02:19:26 2020 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: "Xie, WeiX" X-Patchwork-Id: 77297 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 3A038A04B5; Fri, 11 Sep 2020 04:19:59 +0200 (CEST) Received: from [92.243.14.124] (localhost [127.0.0.1]) by dpdk.org (Postfix) with ESMTP id 3012D1C0CE; Fri, 11 Sep 2020 04:19:59 +0200 (CEST) Received: from mga05.intel.com (mga05.intel.com [192.55.52.43]) by dpdk.org (Postfix) with ESMTP id C0B141B75C for ; Fri, 11 Sep 2020 04:19:57 +0200 (CEST) IronPort-SDR: T33H2oMICLFb4k3xB8q4BYmsL+UhpJcgn+D22YMXzx0ZYldC6FmLfOAa7ic9virY8g8mhP+UWx fO0G7RxD7VKg== X-IronPort-AV: E=McAfee;i="6000,8403,9740"; a="243499353" X-IronPort-AV: E=Sophos;i="5.76,413,1592895600"; d="scan'208";a="243499353" 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:57 -0700 IronPort-SDR: 7m2VmQDFENIwqOFhMTpH2TBe5ByA4u95SgZx95vOhr6Ae+7ZcPa+WXagxyXV4Sl3QZ0DYjr+2X s3QnOM8KZa9w== X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.76,413,1592895600"; d="scan'208";a="318126657" Received: from unknown (HELO localhost.localdomain) ([10.240.183.80]) by orsmga002.jf.intel.com with ESMTP; 10 Sep 2020 19:19:56 -0700 From: Xie wei To: dts@dpdk.org Cc: Xie wei Date: Fri, 11 Sep 2020 10:19:26 +0800 Message-Id: <20200911021928.8224-4-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 3/5] tests/TestSuite_cvl_fdir: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_fdir.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/TestSuite_cvl_fdir.py b/tests/TestSuite_cvl_fdir.py index 3bbb830..474ec2c 100644 --- a/tests/TestSuite_cvl_fdir.py +++ b/tests/TestSuite_cvl_fdir.py @@ -3036,7 +3036,7 @@ class TestCVLFdir(TestCase): socket=self.ports_socket) param = " --log-level='ice,7' -- -i --portmask=%s --rxq=%d --txq=%d --port-topology=loop --cmdline-file=%s" % ( self.portMask, 64, 64, cmd_path) - command_line = self.dut.target + "/app/testpmd " + eal_param + param + command_line = self.dut.apps_name['test-pmd'] + eal_param + param out = self.dut.send_expect(command_line, 'testpmd>', timeout=600) self.verify('Failed to create file' not in out, "create some rule failed: %s" % out) self.config_testpmd()