From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from dpdk.org (dpdk.org [92.243.14.124]) by inbox.dpdk.org (Postfix) with ESMTP id 241A8A0531; Mon, 10 Feb 2020 09:57:20 +0100 (CET) Received: from [92.243.14.124] (localhost [127.0.0.1]) by dpdk.org (Postfix) with ESMTP id DBB651BE94; Mon, 10 Feb 2020 09:57:19 +0100 (CET) Received: from mga18.intel.com (mga18.intel.com [134.134.136.126]) by dpdk.org (Postfix) with ESMTP id 4EE5F1BE88 for ; Mon, 10 Feb 2020 09:57:18 +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 orsmga106.jf.intel.com with ESMTP/TLS/DHE-RSA-AES256-GCM-SHA384; 10 Feb 2020 00:57:17 -0800 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.70,424,1574150400"; d="scan'208";a="405516877" Received: from fmsmsx107.amr.corp.intel.com ([10.18.124.205]) by orsmga005.jf.intel.com with ESMTP; 10 Feb 2020 00:57:17 -0800 Received: from fmsmsx115.amr.corp.intel.com (10.18.116.19) by fmsmsx107.amr.corp.intel.com (10.18.124.205) with Microsoft SMTP Server (TLS) id 14.3.439.0; Mon, 10 Feb 2020 00:57:16 -0800 Received: from shsmsx104.ccr.corp.intel.com (10.239.4.70) by fmsmsx115.amr.corp.intel.com (10.18.116.19) with Microsoft SMTP Server (TLS) id 14.3.439.0; Mon, 10 Feb 2020 00:57:16 -0800 Received: from shsmsx101.ccr.corp.intel.com ([169.254.1.222]) by SHSMSX104.ccr.corp.intel.com ([169.254.5.5]) with mapi id 14.03.0439.000; Mon, 10 Feb 2020 16:57:15 +0800 From: "Tu, Lijuan" To: "Zeng, XiaoxiaoX" , "dts@dpdk.org" CC: "Zeng, XiaoxiaoX" Thread-Topic: [dts] [PATCH V1]tests/unit_tests_kni: need rte_kni Thread-Index: AQHV0DinBQOi7xrNe0SSiU99uWI11qgUP7dA Date: Mon, 10 Feb 2020 08:57:14 +0000 Message-ID: <8CE3E05A3F976642AAB0F4675D0AD20E0BBC577F@SHSMSX101.ccr.corp.intel.com> References: <1579597001-100323-1-git-send-email-xiaoxiaox.zeng@intel.com> In-Reply-To: <1579597001-100323-1-git-send-email-xiaoxiaox.zeng@intel.com> Accept-Language: zh-CN, en-US Content-Language: en-US X-MS-Has-Attach: X-MS-TNEF-Correlator: dlp-product: dlpe-windows dlp-version: 11.2.0.6 dlp-reaction: no-action 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/unit_tests_kni: need rte_kni 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: , Errors-To: dts-bounces@dpdk.org Sender: "dts" Applied, thanks > -----Original Message----- > From: dts [mailto:dts-bounces@dpdk.org] On Behalf Of Zeng Xiaoxiao > Sent: Tuesday, January 21, 2020 4:57 PM > To: dts@dpdk.org > Cc: Zeng, XiaoxiaoX > Subject: [dts] [PATCH V1]tests/unit_tests_kni: need rte_kni >=20 > *. modify CONFIG_RTE_KNI_KMOD as y in config/common_base >=20 > Signed-off-by: Zeng Xiaoxiao > --- > tests/TestSuite_unit_tests_kni.py | 4 +++- > 1 file changed, 3 insertions(+), 1 deletion(-) >=20 > diff --git a/tests/TestSuite_unit_tests_kni.py > b/tests/TestSuite_unit_tests_kni.py > index 4966f4e..ecf412b 100644 > --- a/tests/TestSuite_unit_tests_kni.py > +++ b/tests/TestSuite_unit_tests_kni.py > @@ -73,7 +73,9 @@ class TestUnitTestsKni(TestCase): >=20 > KNI Prerequisites > """ > - > + self.dut.send_expect("sed -i -e > 's/KNI_KMOD_ETHTOOL=3Dn$/KNI_KMOD_ETHTOOL=3Dy/' > config/common_base", "# ", 30) > + self.dut.send_expect("sed -i -e > 's/CONFIG_RTE_KNI_KMOD=3Dn$/CONFIG_RTE_KNI_KMOD=3Dy/' > config/common_base", "# ", 30) > + self.dut.build_install_dpdk(self.target) > self.cores =3D self.dut.get_core_list("all") > self.insmod_kni() >=20 > -- > 1.8.3.1