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 C69A0A49C for ; Tue, 16 Jan 2018 08:15:09 +0100 (CET) X-Amp-Result: SKIPPED(no attachment in message) X-Amp-File-Uploaded: False Received: from orsmga005.jf.intel.com ([10.7.209.41]) by fmsmga101.fm.intel.com with ESMTP/TLS/DHE-RSA-AES256-GCM-SHA384; 15 Jan 2018 23:15:08 -0800 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.46,367,1511856000"; d="scan'208";a="193664391" Received: from dpdk-test32.sh.intel.com (HELO [10.67.119.109]) ([10.67.119.109]) by orsmga005.jf.intel.com with ESMTP; 15 Jan 2018 23:15:07 -0800 Message-ID: <5A5E1506.9010902@intel.com> Date: Tue, 16 Jan 2018 23:06:46 +0800 From: "Liu, Yong" User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:31.0) Gecko/20100101 Thunderbird/31.5.0 MIME-Version: 1.0 To: "zhao,meijuan" , dts@dpdk.org References: <1515981955-17074-1-git-send-email-meijuanx.zhao@intel.com> In-Reply-To: <1515981955-17074-1-git-send-email-meijuanx.zhao@intel.com> Content-Type: text/plain; charset=windows-1252; format=flowed Content-Transfer-Encoding: 7bit Subject: Re: [dts] [PATCH V1] fix vf_kernel alt_session as false 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: Tue, 16 Jan 2018 07:15:10 -0000 Hi Meijuan, Please also add one line comment in the code as the reminder for others. Thanks, Marvin On 01/15/2018 10:05 AM, zhao,meijuan wrote: > in test_zdpf_2kvf_2dvf_2vm,test_dpf_kvf_dvf,testpmd session and host session are in a session because of alt_session is false > > Signed-off-by: zhao,meijuan > --- > tests/TestSuite_vf_kernel.py | 10 ++++++---- > 1 file changed, 6 insertions(+), 4 deletions(-) > > diff --git a/tests/TestSuite_vf_kernel.py b/tests/TestSuite_vf_kernel.py > index 204467d..987ee19 100644 > --- a/tests/TestSuite_vf_kernel.py > +++ b/tests/TestSuite_vf_kernel.py > @@ -688,6 +688,8 @@ class TestVfKernel(TestCase): > self.vm0_dut.send_expect("ifconfig %s up " % self.vm0_intf0, "#") > self.vm0_dut.send_expect("ifconfig %s up " % self.vm0_intf1, "#") > self.vm0_dut.ports_info[1]['port'].bind_driver('igb_uio') > + > + vm0_vf0_mac = self.vm0_dut.ports_info[0]['port'].get_mac_addr() >