From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mga03.intel.com (mga03.intel.com [134.134.136.65]) by dpdk.org (Postfix) with ESMTP id C4B682E41 for ; Sun, 12 Jun 2016 03:58:23 +0200 (CEST) Received: from orsmga001.jf.intel.com ([10.7.209.18]) by orsmga103.jf.intel.com with ESMTP; 11 Jun 2016 18:58:22 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.26,459,1459839600"; d="scan'208";a="973817793" Received: from fmsmsx106.amr.corp.intel.com ([10.18.124.204]) by orsmga001.jf.intel.com with ESMTP; 11 Jun 2016 18:58:22 -0700 Received: from fmsmsx112.amr.corp.intel.com (10.18.116.6) by FMSMSX106.amr.corp.intel.com (10.18.124.204) with Microsoft SMTP Server (TLS) id 14.3.248.2; Sat, 11 Jun 2016 18:58:22 -0700 Received: from shsmsx104.ccr.corp.intel.com (10.239.4.70) by FMSMSX112.amr.corp.intel.com (10.18.116.6) with Microsoft SMTP Server (TLS) id 14.3.248.2; Sat, 11 Jun 2016 18:58:21 -0700 Received: from shsmsx103.ccr.corp.intel.com ([169.254.4.181]) by SHSMSX104.ccr.corp.intel.com ([169.254.5.116]) with mapi id 14.03.0248.002; Sun, 12 Jun 2016 09:58:20 +0800 From: "Liu, Yong" To: "Gu, YongjieX" , "dts@dpdk.org" CC: "Gu, YongjieX" Thread-Topic: [dts] [PATCH] enlarge build time when compile icc targets Thread-Index: AQHRv8ETY/WEjciySU2AMFkWrXSIUZ/lHDXA Date: Sun, 12 Jun 2016 01:58:19 +0000 Message-ID: <86228AFD5BCD8E4EBFD2B90117B5E81E22238536@SHSMSX103.ccr.corp.intel.com> References: <1465196114-10320-1-git-send-email-yongjiex.gu@intel.com> In-Reply-To: <1465196114-10320-1-git-send-email-yongjiex.gu@intel.com> Accept-Language: zh-CN, en-US Content-Language: en-US X-MS-Has-Attach: X-MS-TNEF-Correlator: x-titus-metadata-40: eyJDYXRlZ29yeUxhYmVscyI6IiIsIk1ldGFkYXRhIjp7Im5zIjoiaHR0cDpcL1wvd3d3LnRpdHVzLmNvbVwvbnNcL0ludGVsMyIsImlkIjoiOTYyOTFiZjgtOWE3OC00NmJjLTgyM2QtY2I2MDJmNDI4NTc0IiwicHJvcHMiOlt7Im4iOiJDVFBDbGFzc2lmaWNhdGlvbiIsInZhbHMiOlt7InZhbHVlIjoiQ1RQX0lDIn1dfV19LCJTdWJqZWN0TGFiZWxzIjpbXSwiVE1DVmVyc2lvbiI6IjE1LjkuNi42IiwiVHJ1c3RlZExhYmVsSGFzaCI6IlQ0TVpDWjd1eU9pTkpISnlTYkk3WUFaSCtFYm5EYlI2UFdSYUpvdzlhQkE9In0= x-ctpclassification: CTP_IC 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] enlarge build time when compile icc targets 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: Sun, 12 Jun 2016 01:58:24 -0000 Applied. Thanks. > -----Original Message----- > From: dts [mailto:dts-bounces@dpdk.org] On Behalf Of yongjie > Sent: Monday, June 06, 2016 2:55 PM > To: dts@dpdk.org > Cc: Gu, YongjieX > Subject: [dts] [PATCH] enlarge build time when compile icc targets >=20 > Dts reported timeout error when compile icc on fedora23/22. > Enlarge build time when compile icc targets. >=20 > Signed-off-by: yongjie > --- > framework/project_dpdk.py | 5 ++++- > 1 file changed, 4 insertions(+), 1 deletion(-) >=20 > diff --git a/framework/project_dpdk.py b/framework/project_dpdk.py > index feaebc8..2560bd7 100644 > --- a/framework/project_dpdk.py > +++ b/framework/project_dpdk.py > @@ -165,11 +165,14 @@ class DPDKdut(Dut): > """ > Build DPDK source code on linux with specified target. > """ > + build_time =3D 300 > + if "icc" in target: > + build_time =3D 900 > # clean all > self.send_expect("rm -rf " + target, "#") >=20 > # compile > - out =3D self.send_expect("make -j install T=3D%s %s" % (target, > extra_options), "# ", 300) > + out =3D self.send_expect("make -j install T=3D%s %s" % (target, > extra_options), "# ", build_time) >=20 > if("Error" in out or "No rule to make" in out): > self.logger.error("ERROR - try without '-j'") > -- > 1.9.3