From patchwork Tue Jan 28 16:28:54 2020 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Ferruh Yigit X-Patchwork-Id: 65269 X-Patchwork-Delegate: david.marchand@redhat.com Return-Path: X-Original-To: patchwork@inbox.dpdk.org Delivered-To: patchwork@inbox.dpdk.org Received: from dpdk.org (dpdk.org [92.243.14.124]) by inbox.dpdk.org (Postfix) with ESMTP id 4D3AEA04B3; Tue, 28 Jan 2020 17:34:13 +0100 (CET) Received: from [92.243.14.124] (localhost [127.0.0.1]) by dpdk.org (Postfix) with ESMTP id 161811D53E; Tue, 28 Jan 2020 17:29:00 +0100 (CET) Received: from mga17.intel.com (mga17.intel.com [192.55.52.151]) by dpdk.org (Postfix) with ESMTP id 134DB1D548 for ; Tue, 28 Jan 2020 17:28:57 +0100 (CET) X-Amp-Result: SKIPPED(no attachment in message) X-Amp-File-Uploaded: False Received: from fmsmga005.fm.intel.com ([10.253.24.32]) by fmsmga107.fm.intel.com with ESMTP/TLS/DHE-RSA-AES256-GCM-SHA384; 28 Jan 2020 08:28:57 -0800 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.70,374,1574150400"; d="scan'208";a="427676649" Received: from silpixa00399752.ir.intel.com (HELO silpixa00399752.ger.corp.intel.com) ([10.237.222.180]) by fmsmga005.fm.intel.com with ESMTP; 28 Jan 2020 08:28:56 -0800 From: Ferruh Yigit To: Aaron Conole , Michael Santana Cc: dev@dpdk.org Date: Tue, 28 Jan 2020 16:28:54 +0000 Message-Id: <20200128162854.3367823-1-ferruh.yigit@intel.com> X-Mailer: git-send-email 2.24.1 MIME-Version: 1.0 Subject: [dpdk-dev] [PATCH] ci: increase unit test timeout X-BeenThere: dev@dpdk.org X-Mailman-Version: 2.1.15 Precedence: list List-Id: DPDK patches and discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: dev-bounces@dpdk.org Sender: "dev" Timeout multiplier was 3, which gives 30 seconds for unit test but still some unit test was timing out time to time and travis reporting false positive failures. Increasing the multiplier to 10, which makes timeout duration 100seconds. Signed-off-by: Ferruh Yigit Acked-by: Michael Santana Acked-by: Aaron Conole --- .ci/linux-build.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.ci/linux-build.sh b/.ci/linux-build.sh index ccc3a7ccd..be3dc4940 100755 --- a/.ci/linux-build.sh +++ b/.ci/linux-build.sh @@ -37,5 +37,5 @@ if [ "$AARCH64" != "1" ]; then fi if [ "$RUN_TESTS" = "1" ]; then - sudo meson test -C build --suite fast-tests -t 3 + sudo meson test -C build --suite fast-tests -t 10 fi