From patchwork Fri Sep 4 08:18:11 2020 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: "Zhang, XiX" X-Patchwork-Id: 76500 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 24571A04C5; Fri, 4 Sep 2020 10:17:08 +0200 (CEST) Received: from [92.243.14.124] (localhost [127.0.0.1]) by dpdk.org (Postfix) with ESMTP id 1A4AB1C0CD; Fri, 4 Sep 2020 10:17:08 +0200 (CEST) Received: from mga01.intel.com (mga01.intel.com [192.55.52.88]) by dpdk.org (Postfix) with ESMTP id BE010255 for ; Fri, 4 Sep 2020 10:17:05 +0200 (CEST) IronPort-SDR: hbG5PSvIu2ot/zkor1LkubSUZdklSvzXFp+y8GbLYExuIZ130eu3+WuwybGqxSBjCCHjIB+gaw PjxNVvYz7hGA== X-IronPort-AV: E=McAfee;i="6000,8403,9733"; a="175763249" X-IronPort-AV: E=Sophos;i="5.76,389,1592895600"; d="scan'208";a="175763249" X-Amp-Result: SKIPPED(no attachment in message) X-Amp-File-Uploaded: False Received: from orsmga002.jf.intel.com ([10.7.209.21]) by fmsmga101.fm.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 04 Sep 2020 01:17:05 -0700 IronPort-SDR: sem4f8roZoalYFQ3jvQGhDGluFajgLkYhdIHgZ7PBTTBIrhi+FdLTJrCFnSpqBUwHTBE9+gTmd mROTjefg+YuQ== X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.76,389,1592895600"; d="scan'208";a="315782561" Received: from unknown (HELO localhost.localdomain.sh.intel.com) ([10.240.182.150]) by orsmga002.jf.intel.com with ESMTP; 04 Sep 2020 01:17:04 -0700 From: xizhan4x To: dts@dpdk.org Cc: xizhan4x Date: Fri, 4 Sep 2020 16:18:11 +0800 Message-Id: <1599207525-22123-4-git-send-email-xix.zhang@intel.com> X-Mailer: git-send-email 1.8.3.1 In-Reply-To: <1599207525-22123-1-git-send-email-xix.zhang@intel.com> References: <1599207525-22123-1-git-send-email-xix.zhang@intel.com> Subject: [dts] [dts 04/38] tests-TestSuite_dynamic_config.py:support meson build 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: xizhan4x --- tests/TestSuite_eventdev_pipeline.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/tests/TestSuite_eventdev_pipeline.py b/tests/TestSuite_eventdev_pipeline.py index b0b3b8b..33091b6 100644 --- a/tests/TestSuite_eventdev_pipeline.py +++ b/tests/TestSuite_eventdev_pipeline.py @@ -85,9 +85,9 @@ class TestEventdevPipeline(TestCase): pass def build_eventdev_app(self): - self.app_command = "examples/eventdev_pipeline" - out = self.dut.build_dpdk_apps(self.app_command) - self.verify('make: Leaving directory' in out, "Compilation failed") + self.app_command = self.dut.apps_name["eventdev_pipeline"] + out = self.dut.build_dpdk_apps("examples/eventdev_pipeline") + # self.verify('make: Leaving directory' in out, "Compilation failed") self.verify("Error" not in out, "compilation error 1") self.verify("No such file" not in out, "compilation error 2")