From patchwork Fri Oct 22 09:32:34 2021 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Jun Dong X-Patchwork-Id: 102654 Return-Path: X-Original-To: patchwork@inbox.dpdk.org Delivered-To: patchwork@inbox.dpdk.org Received: from mails.dpdk.org (mails.dpdk.org [217.70.189.124]) by inbox.dpdk.org (Postfix) with ESMTP id 8D957A0C43; Fri, 22 Oct 2021 11:32:50 +0200 (CEST) Received: from [217.70.189.124] (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id 7EA8341177; Fri, 22 Oct 2021 11:32:50 +0200 (CEST) Received: from mga01.intel.com (mga01.intel.com [192.55.52.88]) by mails.dpdk.org (Postfix) with ESMTP id F32BE41149 for ; Fri, 22 Oct 2021 11:32:48 +0200 (CEST) X-IronPort-AV: E=McAfee;i="6200,9189,10144"; a="252768133" X-IronPort-AV: E=Sophos;i="5.87,172,1631602800"; d="scan'208";a="252768133" Received: from orsmga008.jf.intel.com ([10.7.209.65]) by fmsmga101.fm.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 22 Oct 2021 02:32:48 -0700 X-IronPort-AV: E=Sophos;i="5.87,172,1631602800"; d="scan'208";a="495601366" Received: from unknown (HELO dpdk-zhaohy-t.sh.intel.com) ([10.240.183.68]) by orsmga008-auth.jf.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 22 Oct 2021 02:32:44 -0700 From: "Dong, JunX" To: dts@dpdk.org Cc: junx.dong@intel.com Date: Fri, 22 Oct 2021 17:32:34 +0800 Message-Id: <1634895154-109461-1-git-send-email-junx.dong@intel.com> X-Mailer: git-send-email 1.8.3.1 Subject: [dts] [PATCH V1] tests/eventdev_pipeline*: restore application parameter -a to -w X-BeenThere: dts@dpdk.org X-Mailman-Version: 2.1.29 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" From: Jun Dong Signed-off-by: Jun Dong --- tests/TestSuite_eventdev_pipeline.py | 2 +- tests/TestSuite_eventdev_pipeline_perf.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/TestSuite_eventdev_pipeline.py b/tests/TestSuite_eventdev_pipeline.py index 32959500..33091b6a 100644 --- a/tests/TestSuite_eventdev_pipeline.py +++ b/tests/TestSuite_eventdev_pipeline.py @@ -99,7 +99,7 @@ class TestEventdevPipeline(TestCase): ports=[self.dut.ports_info[0]['pci']]) command_line = "taskset -c %s " + self.app_command + \ "/build/eventdev_pipeline %s " + \ - "--vdev event_sw0 -- -r%s -t%s -e%s -a %s -s1 -n0 -c32 -W1000 %s -D" + "--vdev event_sw0 -- -r%s -t%s -e%s -w %s -s1 -n0 -c32 -W1000 %s -D" command_line = command_line % ( self.taskset_core_list, eal_params, self.core_mask_rx, self.core_mask_tx, self.core_mask_sd, self.core_mask_wk, cmd_type) diff --git a/tests/TestSuite_eventdev_pipeline_perf.py b/tests/TestSuite_eventdev_pipeline_perf.py index 830c91a3..5ff0b8d1 100644 --- a/tests/TestSuite_eventdev_pipeline_perf.py +++ b/tests/TestSuite_eventdev_pipeline_perf.py @@ -149,7 +149,7 @@ class TestEventdevPipelinePerf(TestCase): ## Adding core-list and pci-ids command_line1 = command_line1 + " -a %s " ## Adding test and stage types - command_line2 = "-- -a %s -n=0 --dump %s -m 16384" % (wmask , stlist ) + command_line2 = "-- -w %s -n=0 --dump %s -m 16384" % (wmask , stlist ) return command_line1 + command_line2 def test_perf_eventdev_pipeline_1ports_atomic_performance(self):