From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mga14.intel.com (mga14.intel.com [192.55.52.115]) by dpdk.org (Postfix) with ESMTP id C0D122C37 for ; Mon, 24 Dec 2018 11:23:11 +0100 (CET) X-Amp-Result: SKIPPED(no attachment in message) X-Amp-File-Uploaded: False Received: from orsmga004.jf.intel.com ([10.7.209.38]) by fmsmga103.fm.intel.com with ESMTP/TLS/DHE-RSA-AES256-GCM-SHA384; 24 Dec 2018 02:23:10 -0800 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.56,391,1539673200"; d="scan'208";a="261883862" Received: from fmsmsx105.amr.corp.intel.com ([10.18.124.203]) by orsmga004.jf.intel.com with ESMTP; 24 Dec 2018 02:23:10 -0800 Received: from fmsmsx122.amr.corp.intel.com (10.18.125.37) by FMSMSX105.amr.corp.intel.com (10.18.124.203) with Microsoft SMTP Server (TLS) id 14.3.408.0; Mon, 24 Dec 2018 02:23:10 -0800 Received: from shsmsx152.ccr.corp.intel.com (10.239.6.52) by fmsmsx122.amr.corp.intel.com (10.18.125.37) with Microsoft SMTP Server (TLS) id 14.3.408.0; Mon, 24 Dec 2018 02:23:10 -0800 Received: from shsmsx102.ccr.corp.intel.com ([169.254.2.182]) by SHSMSX152.ccr.corp.intel.com ([169.254.6.222]) with mapi id 14.03.0415.000; Mon, 24 Dec 2018 18:23:08 +0800 From: "Yao, BingX Y" To: "Zhao, MeijuanX" , "dts@dpdk.org" CC: "Zhao, MeijuanX" Thread-Topic: [dts] [PATCH V1] tests/vm power mgr:fix match cpu fail Thread-Index: AQHUm1ebcgLq8avUoEmfYjRP7R1vd6WNrmxg Date: Mon, 24 Dec 2018 10:23:07 +0000 Message-ID: <95BCD24840F32441BEA74E0F8A31839E04ECE7EC@shsmsx102.ccr.corp.intel.com> References: <1545635501-45426-1-git-send-email-meijuanx.zhao@intel.com> In-Reply-To: <1545635501-45426-1-git-send-email-meijuanx.zhao@intel.com> Accept-Language: en-US Content-Language: en-US X-MS-Has-Attach: X-MS-TNEF-Correlator: x-originating-ip: [10.239.127.40] Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: quoted-printable MIME-Version: 1.0 Subject: Re: [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 10:23:12 -0000 Tested-by: Yao, bing -----Original Message----- From: dts [mailto:dts-bounces@dpdk.org] On Behalf Of zhao,meijuan Sent: Monday, December 24, 2018 3:12 PM To: dts@dpdk.org Cc: Zhao, MeijuanX Subject: [dts] [PATCH V1] tests/vm power mgr:fix match cpu fail 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 =3D 0 for cpu in cpus: - mask =3D utils.create_mask([cpu]) - cpu_map =3D '[%d]: Physical CPU Mask %s' % (cpu_idx, mask) + cpu_map =3D '[%d]: Physical CPU %s' % (cpu_idx, cpu) self.verify(cpu_map in vm_info, "Faile to map host cpu %s" % c= pu) cpu_idx +=3D 1 =20 --=20 2.17.2