From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mga04.intel.com (mga04.intel.com [192.55.52.120]) by dpdk.org (Postfix) with ESMTP id 045691B4AE for ; Mon, 24 Dec 2018 08:08:28 +0100 (CET) X-Amp-Result: SKIPPED(no attachment in message) X-Amp-File-Uploaded: False Received: from fmsmga002.fm.intel.com ([10.253.24.26]) by fmsmga104.fm.intel.com with ESMTP/TLS/DHE-RSA-AES256-GCM-SHA384; 23 Dec 2018 23:08:27 -0800 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.56,391,1539673200"; d="scan'208";a="128598548" Received: from unknown (HELO localhost.localdomain.sh.intel.com) ([10.240.176.135]) by fmsmga002.fm.intel.com with ESMTP; 23 Dec 2018 23:08:27 -0800 From: "zhao,meijuan" To: dts@dpdk.org Cc: "zhao,meijuan" Date: Mon, 24 Dec 2018 15:11:41 +0800 Message-Id: <1545635501-45426-1-git-send-email-meijuanx.zhao@intel.com> X-Mailer: git-send-email 1.9.3 Subject: [dts] [PATCH V1] tests/vm power mgr:fix match cpu fail 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: Mon, 24 Dec 2018 07:08:29 -0000 dpdk remove power mask function,you can reference b6b22982f Signed-off-by: zhao,meijuan --- tests/TestSuite_vm_power_manager.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/tests/TestSuite_vm_power_manager.py b/tests/TestSuite_vm_power_manager.py index 59043c6..7620c19 100644 --- a/tests/TestSuite_vm_power_manager.py +++ b/tests/TestSuite_vm_power_manager.py @@ -268,8 +268,7 @@ class TestVmPowerManager(TestCase, IxiaPacketGenerator): # check host core has correct mapped cpu_idx = 0 for cpu in cpus: - mask = utils.create_mask([cpu]) - cpu_map = '[%d]: Physical CPU Mask %s' % (cpu_idx, mask) + cpu_map = '[%d]: Physical CPU %s' % (cpu_idx, cpu) self.verify(cpu_map in vm_info, "Faile to map host cpu %s" % cpu) cpu_idx += 1 -- 2.17.2