From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mails.dpdk.org (mails.dpdk.org [217.70.189.124]) by inbox.dpdk.org (Postfix) with ESMTP id 2AEB6A0C41; Wed, 20 Oct 2021 04:16:36 +0200 (CEST) Received: from [217.70.189.124] (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id 212FB40683; Wed, 20 Oct 2021 04:16:36 +0200 (CEST) Received: from mga03.intel.com (mga03.intel.com [134.134.136.65]) by mails.dpdk.org (Postfix) with ESMTP id 475B740142 for ; Wed, 20 Oct 2021 04:16:34 +0200 (CEST) X-IronPort-AV: E=McAfee;i="6200,9189,10142"; a="228621511" X-IronPort-AV: E=Sophos;i="5.87,165,1631602800"; d="scan'208";a="228621511" Received: from orsmga008.jf.intel.com ([10.7.209.65]) by orsmga103.jf.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 19 Oct 2021 19:16:33 -0700 X-IronPort-AV: E=Sophos;i="5.87,165,1631602800"; d="scan'208";a="494398541" 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; 19 Oct 2021 19:16:31 -0700 From: Jun Dong To: dts@dpdk.org Cc: PingX.Yu@intel.com, weix.ling@intel.com, junx.dong@intel.com Date: Wed, 20 Oct 2021 10:30:04 +0800 Message-Id: <1634697004-102833-1-git-send-email-junx.dong@intel.com> X-Mailer: git-send-email 1.8.3.1 Subject: [dts] [PATCH V1] tests/TestSuite_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" 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): -- 2.25.1