From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from dpdk.org (dpdk.org [92.243.14.124]) by dpdk.space (Postfix) with ESMTP id 66968A05D3 for ; Tue, 26 Mar 2019 10:35:59 +0100 (CET) Received: from [92.243.14.124] (localhost [127.0.0.1]) by dpdk.org (Postfix) with ESMTP id 27DB511A4; Tue, 26 Mar 2019 10:35:59 +0100 (CET) Received: from mga06.intel.com (mga06.intel.com [134.134.136.31]) by dpdk.org (Postfix) with ESMTP id D10301150 for ; Tue, 26 Mar 2019 10:35:57 +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 orsmga104.jf.intel.com with ESMTP/TLS/DHE-RSA-AES256-GCM-SHA384; 26 Mar 2019 02:35:56 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.60,271,1549958400"; d="scan'208";a="158463522" Received: from fmsmsx108.amr.corp.intel.com ([10.18.124.206]) by fmsmga001.fm.intel.com with ESMTP; 26 Mar 2019 02:35:56 -0700 Received: from fmsmsx161.amr.corp.intel.com (10.18.125.9) by FMSMSX108.amr.corp.intel.com (10.18.124.206) with Microsoft SMTP Server (TLS) id 14.3.408.0; Tue, 26 Mar 2019 02:35:56 -0700 Received: from shsmsx103.ccr.corp.intel.com (10.239.4.69) by FMSMSX161.amr.corp.intel.com (10.18.125.9) with Microsoft SMTP Server (TLS) id 14.3.408.0; Tue, 26 Mar 2019 02:35:55 -0700 Received: from shsmsx101.ccr.corp.intel.com ([169.254.1.158]) by SHSMSX103.ccr.corp.intel.com ([169.254.4.134]) with mapi id 14.03.0415.000; Tue, 26 Mar 2019 17:35:54 +0800 From: "Zhu, ShuaiX" To: "Wu, ChangqingX" , "dts@dpdk.org" CC: "Wu, ChangqingX" , "Zhu, ShuaiX" Thread-Topic: [dts] [PATCH V1] framework/project_dpdk:delete the specified compiler of freebsd Thread-Index: AQHU46/4J4Suv1AGtUGsR9sdxTZqhKYdpx7Q Date: Tue, 26 Mar 2019 09:35:53 +0000 Message-ID: <4DC48DF9BDA3E54A836D2D3C057DEC6F0B15718D@SHSMSX101.ccr.corp.intel.com> References: <1553589140-87124-1-git-send-email-changqingx.wu@intel.com> In-Reply-To: <1553589140-87124-1-git-send-email-changqingx.wu@intel.com> Accept-Language: en-US Content-Language: en-US X-MS-Has-Attach: X-MS-TNEF-Correlator: dlp-product: dlpe-windows dlp-version: 11.0.400.15 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] framework/project_dpdk:delete the specified compiler of freebsd 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" Tested-by: Zhu, ShuaiX > -----Original Message----- > From: dts [mailto:dts-bounces@dpdk.org] On Behalf Of changqingxwu > Sent: Tuesday, March 26, 2019 4:32 PM > To: dts@dpdk.org > Cc: Wu, ChangqingX > Subject: [dts] [PATCH V1] framework/project_dpdk:delete the specified > compiler of freebsd >=20 > Signed-off-by: changqingxwu > --- > framework/project_dpdk.py | 4 ++-- > 1 file changed, 2 insertions(+), 2 deletions(-) >=20 > diff --git a/framework/project_dpdk.py b/framework/project_dpdk.py index > 6035c68..bc26f55 100644 > --- a/framework/project_dpdk.py > +++ b/framework/project_dpdk.py > @@ -236,13 +236,13 @@ class DPDKdut(Dut): > self.send_expect("rm -rf %s" % r'./app/test/test_pci_sysfs.res.o= ' , > "#") > build_time =3D 120 > # compile > - out =3D self.send_expect("make -j %d install T=3D%s CC=3Dgcc48" = % > (self.number_of_cores, > + out =3D self.send_expect("make -j %d install T=3D%s" % > + (self.number_of_cores, >=20 > target), > "#", build_time) > if("Error" in out or "No rule to make" in out): > self.logger.error("ERROR - try without '-j'") > # if Error try to execute make without -j option > - out =3D self.send_expect("make install T=3D%s CC=3Dgcc48" % = target, > + out =3D self.send_expect("make install T=3D%s" % target, > "#", build_time) >=20 > assert ("Error" not in out), "Compilation error..." > -- > 2.17.2