From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mga01.intel.com (mga01.intel.com [192.55.52.88]) by dpdk.org (Postfix) with ESMTP id 230471B4D1 for ; Mon, 24 Dec 2018 09:23:11 +0100 (CET) X-Amp-Result: SKIPPED(no attachment in message) X-Amp-File-Uploaded: False Received: from fmsmga001.fm.intel.com ([10.253.24.23]) by fmsmga101.fm.intel.com with ESMTP/TLS/DHE-RSA-AES256-GCM-SHA384; 24 Dec 2018 00:23:11 -0800 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.56,391,1539673200"; d="scan'208";a="132460896" Received: from dts-maintain.sh.intel.com (HELO [10.67.119.110]) ([10.67.119.110]) by fmsmga001.fm.intel.com with ESMTP; 24 Dec 2018 00:23:09 -0800 To: "zhao,meijuan" , dts@dpdk.org References: <1545635501-45426-1-git-send-email-meijuanx.zhao@intel.com> From: Lijuan Tu Message-ID: Date: Tue, 25 Dec 2018 00:50:53 +0800 User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:52.0) Gecko/20100101 Thunderbird/52.8.0 MIME-Version: 1.0 In-Reply-To: <1545635501-45426-1-git-send-email-meijuanx.zhao@intel.com> Content-Type: text/plain; charset=utf-8; format=flowed Content-Transfer-Encoding: 8bit Content-Language: en-US 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 08:23:12 -0000 Applied with changed comments to match the right dpdk commit id. On 2018年12月24日 15:11, zhao,meijuan wrote: > 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 >