From patchwork Tue Sep 15 07:36:34 2020 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Lingli Chen X-Patchwork-Id: 77687 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 45B15A04C7; Tue, 15 Sep 2020 09:38:01 +0200 (CEST) Received: from [92.243.14.124] (localhost [127.0.0.1]) by dpdk.org (Postfix) with ESMTP id 256B11BF7F; Tue, 15 Sep 2020 09:38:01 +0200 (CEST) Received: from mga14.intel.com (mga14.intel.com [192.55.52.115]) by dpdk.org (Postfix) with ESMTP id DF189DE0 for ; Tue, 15 Sep 2020 09:37:59 +0200 (CEST) IronPort-SDR: Qixr6XAddraoQ+YFe4BsQqk+WO3Uw2IYChuvSnC3PBbLCPeFrVWvjIfy8oaOr2kTivEILAzySh yaqgVuybDsVQ== X-IronPort-AV: E=McAfee;i="6000,8403,9744"; a="158499714" X-IronPort-AV: E=Sophos;i="5.76,429,1592895600"; d="scan'208";a="158499714" X-Amp-Result: SKIPPED(no attachment in message) X-Amp-File-Uploaded: False Received: from orsmga002.jf.intel.com ([10.7.209.21]) by fmsmga103.fm.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 15 Sep 2020 00:37:58 -0700 IronPort-SDR: jTevLfjtrPjwSvrNoK3+6PkjRFXQ+alrUNZjCAT4FKq9hv4s6rxh2pmuWFZyc5K7WeuJdzTsnR o1jJcdgJgUVw== X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.76,429,1592895600"; d="scan'208";a="319337592" Received: from unknown (HELO localhost.localdomain) ([10.240.183.80]) by orsmga002.jf.intel.com with ESMTP; 15 Sep 2020 00:37:56 -0700 From: Chen Linglix To: dts@dpdk.org Cc: Chen Linglix Date: Tue, 15 Sep 2020 15:36:34 +0800 Message-Id: <20200915073634.16433-1-linglix.chen@intel.com> X-Mailer: git-send-email 2.17.1 Subject: [dts] [PATCH V1] tests/TestSuite_dynamic_config:Delete redundant parameters 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" Delete redundant parameters Signed-off-by: Chen Linglix Tested-by: Chen, LingliX Signed-off-by: Chen Linglix --- tests/TestSuite_dynamic_config.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/TestSuite_dynamic_config.py b/tests/TestSuite_dynamic_config.py index 1b77ea1..a9c482e 100644 --- a/tests/TestSuite_dynamic_config.py +++ b/tests/TestSuite_dynamic_config.py @@ -119,7 +119,7 @@ class TestDynamicConfig(TestCase): Run before each test case. """ cmd = "%s -n 3 -- -i --rxpt=0 \ - --rxht=0 --rxwt=0 --txpt=39 --txht=0 --txwt=0 --portmask=%s" % (self.path, self.coreMask, self.portMask) + --rxht=0 --rxwt=0 --txpt=39 --txht=0 --txwt=0 --portmask=%s" % (self.path, self.portMask) self.dut.send_expect("%s" % cmd, "testpmd> ", 120) time.sleep(5)