From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from dpdk.org (dpdk.org [92.243.14.124]) by inbox.dpdk.org (Postfix) with ESMTP id CA7DBA00E6 for ; Wed, 10 Jul 2019 05:08:10 +0200 (CEST) Received: from [92.243.14.124] (localhost [127.0.0.1]) by dpdk.org (Postfix) with ESMTP id C2EBA1B96E; Wed, 10 Jul 2019 05:08:10 +0200 (CEST) Received: from mga09.intel.com (mga09.intel.com [134.134.136.24]) by dpdk.org (Postfix) with ESMTP id E92011B959 for ; Wed, 10 Jul 2019 05:08:07 +0200 (CEST) X-Amp-Result: SKIPPED(no attachment in message) X-Amp-File-Uploaded: False Received: from orsmga003.jf.intel.com ([10.7.209.27]) by orsmga102.jf.intel.com with ESMTP/TLS/DHE-RSA-AES256-GCM-SHA384; 09 Jul 2019 20:08:06 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.63,473,1557212400"; d="scan'208";a="168180102" Received: from itecstvdts01.sh.intel.com ([10.67.111.77]) by orsmga003.jf.intel.com with ESMTP; 09 Jul 2019 20:08:06 -0700 From: yufengmx To: dts@dpdk.org Cc: yufengmx Date: Wed, 10 Jul 2019 11:09:21 +0800 Message-Id: <1562728162-214888-2-git-send-email-yufengx.mo@intel.com> X-Mailer: git-send-email 1.9.3 In-Reply-To: <1562728162-214888-1-git-send-email-yufengx.mo@intel.com> References: <1562728162-214888-1-git-send-email-yufengx.mo@intel.com> Subject: [dts] [PATCH V1 1/2] tests/kni: fix typo in output message 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" fix typo issue in output message. Signed-off-by: yufengmx --- tests/TestSuite_kni.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/TestSuite_kni.py b/tests/TestSuite_kni.py index cf2403d..f1f85df 100644 --- a/tests/TestSuite_kni.py +++ b/tests/TestSuite_kni.py @@ -780,7 +780,7 @@ class TestKni(TestCase): total_cores = len(self.config['tx_cores'] + self.config[ 'rx_cores'] + self.config['kernel_cores']) if total_cores > self.dut_physical_cores(): - self.logger.info("Skiping step %s (%d cores needed, got %d)" % + self.logger.info("Skipping step %s (%d cores needed, got %d)" % (step['config'], total_cores, self.dut_physical_cores()) ) @@ -850,7 +850,7 @@ class TestKni(TestCase): total_cores = len(self.config['tx_cores'] + self.config[ 'rx_cores'] + self.config['kernel_cores']) if total_cores > self.dut_physical_cores(): - self.logger.info("Skiping step %s (%d cores needed, got %d)" % + self.logger.info("Skipping step %s (%d cores needed, got %d)" % (step['config'], total_cores, self.dut_physical_cores()) ) -- 1.9.3