From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mga07.intel.com (mga07.intel.com [134.134.136.100]) by dpdk.org (Postfix) with ESMTP id 3BBF437B4 for ; Thu, 29 Sep 2016 08:31:53 +0200 (CEST) Received: from fmsmga001.fm.intel.com ([10.253.24.23]) by orsmga105.jf.intel.com with ESMTP; 28 Sep 2016 23:31:52 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.30,413,1470726000"; d="scan'208";a="1047315619" Received: from unknown (HELO dpdk-fedora20.icx.intel.com) ([10.240.176.135]) by fmsmga001.fm.intel.com with ESMTP; 28 Sep 2016 23:31:51 -0700 From: "xu,gang" To: dts@dpdk.org Cc: "xu,gang" Date: Thu, 29 Sep 2016 14:33:26 +0800 Message-Id: <1475130806-32479-1-git-send-email-gangx.xu@intel.com> X-Mailer: git-send-email 1.9.3 Subject: [dts] [PATCH V1] fix TestSuite dynamic_config 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: , X-List-Received-Date: Thu, 29 Sep 2016 06:31:53 -0000 Modify the variable name Signed-off-by: xu,gang --- tests/TestSuite_dynamic_config.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/TestSuite_dynamic_config.py b/tests/TestSuite_dynamic_config.py index cd6dacf..1ba6dd4 100644 --- a/tests/TestSuite_dynamic_config.py +++ b/tests/TestSuite_dynamic_config.py @@ -70,8 +70,8 @@ class TestDynamicConfig(TestCase): # Prepare cores and ports cores = self.dut.get_core_list('1S/2C/2T') - coreMask = utils.create_mask(cores) - portMask = utils.create_mask(self.dut_ports[:2]) + self.coreMask = utils.create_mask(cores) + self.portMask = utils.create_mask(self.dut_ports[:2]) # launch app cmd = "./%s/build/app/test-pmd/testpmd -c %s -n 3 -- -i --rxpt=0 \ -- 1.9.3