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 E38D7A046B for ; Wed, 21 Aug 2019 14:59:48 +0200 (CEST) Received: from [92.243.14.124] (localhost [127.0.0.1]) by dpdk.org (Postfix) with ESMTP id 81E421BEF0; Wed, 21 Aug 2019 14:59:48 +0200 (CEST) Received: from mx0b-0016f401.pphosted.com (mx0a-0016f401.pphosted.com [67.231.148.174]) by dpdk.org (Postfix) with ESMTP id D30351BEEF for ; Wed, 21 Aug 2019 14:59:46 +0200 (CEST) Received: from pps.filterd (m0045849.ppops.net [127.0.0.1]) by mx0a-0016f401.pphosted.com (8.16.0.42/8.16.0.42) with SMTP id x7LCvAUd021320 for ; Wed, 21 Aug 2019 05:59:45 -0700 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=marvell.com; h=from : to : cc : subject : date : message-id : mime-version : content-type; s=pfpt0818; bh=5Fd1zMmm4Jf3TI5oquXlqEBo0+usS42Arm2+mLHXuAU=; b=kOUY3FCIdqDosX+uOSGl7/ETLc9EbmhsnHmLU6nJ9dcUeY5LEL1H7otTDSTerblHUwYq pDcdVORGzp9tnctgJOj+/4jJp4dsFDIT8/EPhXX1uS0yumtMZ3x7SvGhhxL7if7k/1pN wgPB6e4ts2rFafHpAHHIBtQpYHRzG5bEXDDfQCT6E8CwgusdUVBFLMu46O9aSgmUjNW9 VoqWmYb1efVo13ATXcTnuz0DlBPpCk4cwBYpLsjtqL7kv+ecGnIjRXKhXSqAnYv+v6lx zLfIbHr3TphB6ms2e10iZKe2+2HoBBDFUtUBVpUqhtzaieILLHQ+pZnbwu+1kaeU9ZBn ig== Received: from sc-exch02.marvell.com ([199.233.58.182]) by mx0a-0016f401.pphosted.com with ESMTP id 2ugu7fjabw-1 (version=TLSv1.2 cipher=ECDHE-RSA-AES256-SHA384 bits=256 verify=NOT) for ; Wed, 21 Aug 2019 05:59:45 -0700 Received: from SC-EXCH03.marvell.com (10.93.176.83) by SC-EXCH02.marvell.com (10.93.176.82) with Microsoft SMTP Server (TLS) id 15.0.1367.3; Wed, 21 Aug 2019 05:59:44 -0700 Received: from maili.marvell.com (10.93.176.43) by SC-EXCH03.marvell.com (10.93.176.83) with Microsoft SMTP Server id 15.0.1367.3 via Frontend Transport; Wed, 21 Aug 2019 05:59:44 -0700 Received: from phanendra-system.marvell.com (unknown [10.28.11.20]) by maili.marvell.com (Postfix) with ESMTP id A64B13F703F; Wed, 21 Aug 2019 05:59:42 -0700 (PDT) From: To: CC: , , Phanendra Vukkisala Date: Wed, 21 Aug 2019 18:29:38 +0530 Message-ID: <1566392378-8987-1-git-send-email-pvukkisala@marvell.com> X-Mailer: git-send-email 1.7.9.5 MIME-Version: 1.0 Content-Type: text/plain X-Proofpoint-Virus-Version: vendor=fsecure engine=2.50.10434:5.22.84,1.0.8 definitions=2019-08-21_04:2019-08-19,2019-08-21 signatures=0 Subject: [dts] [PATCH] project_dpdk: Increase timeout for single thread build 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" From: Phanendra Vukkisala Single thread build take more time than multi thread, so increasing timeout Signed-off-by: Phanendra Vukkisala --- 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 a88f5dc..f75a4b9 100644 --- a/framework/project_dpdk.py +++ b/framework/project_dpdk.py @@ -229,7 +229,7 @@ class DPDKdut(Dut): 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 = self.send_expect("make install T=%s %s" % (target, extra_options), "# ", 120) + out = self.send_expect("make install T=%s %s" % (target, extra_options), "# ", build_time*4) assert ("Error" not in out), "Compilation error..." assert ("No rule to make" not in out), "No rule to make error..." -- 1.7.9.5