From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mga02.intel.com (mga02.intel.com [134.134.136.20]) by dpdk.org (Postfix) with ESMTP id 39ABF959E for ; Mon, 16 Nov 2015 03:56:05 +0100 (CET) Received: from orsmga003.jf.intel.com ([10.7.209.27]) by orsmga101.jf.intel.com with ESMTP; 15 Nov 2015 18:56:04 -0800 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.20,300,1444719600"; d="scan'208";a="686196153" Received: from stv-crb-56.sh.intel.com (HELO [10.239.128.116]) ([10.239.128.116]) by orsmga003.jf.intel.com with ESMTP; 15 Nov 2015 18:56:03 -0800 Message-ID: <5649460E.1080705@intel.com> Date: Mon, 16 Nov 2015 10:57:18 +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: Lijuan Tu , dts@dpdk.org References: <1447640398-25025-1-git-send-email-lijuanx.a.tu@intel.com> In-Reply-To: <1447640398-25025-1-git-send-email-lijuanx.a.tu@intel.com> Content-Type: text/plain; charset=windows-1252; format=flowed Content-Transfer-Encoding: 7bit Subject: Re: [dts] [PATCH]icc: extend waiting time for icc compilation 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, 16 Nov 2015 02:56:05 -0000 Applied. Thanks. On 11/16/2015 10:19 AM, Lijuan Tu wrote: > Signed-off-by: Lijuan Tu > --- > framework/project_dpdk.py | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > > diff --git a/framework/project_dpdk.py b/framework/project_dpdk.py > index e0009d3..1c2f095 100644 > --- a/framework/project_dpdk.py > +++ b/framework/project_dpdk.py > @@ -162,7 +162,7 @@ class DPDKdut(Dut): > self.send_expect("rm -rf " + target, "#") > > # compile > - out = self.send_expect("make -j install T=%s %s" % (target, extra_options), "# ", 120) > + out = self.send_expect("make -j install T=%s %s" % (target, extra_options), "# ", 300) > > if("Error" in out or "No rule to make" in out): > self.logger.error("ERROR - try without '-j'")