From mboxrd@z Thu Jan  1 00:00:00 1970
Return-Path: <dev-bounces@dpdk.org>
Received: from dpdk.org (dpdk.org [92.243.14.124])
	by inbox.dpdk.org (Postfix) with ESMTP id 32298A04B3;
	Tue, 28 Jan 2020 21:53:26 +0100 (CET)
Received: from [92.243.14.124] (localhost [127.0.0.1])
	by dpdk.org (Postfix) with ESMTP id 081C71D598;
	Tue, 28 Jan 2020 21:53:25 +0100 (CET)
Received: from us-smtp-delivery-1.mimecast.com (us-smtp-2.mimecast.com
 [207.211.31.81]) by dpdk.org (Postfix) with ESMTP id B1B981D577
 for <dev@dpdk.org>; Tue, 28 Jan 2020 21:53:23 +0100 (CET)
DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=redhat.com;
 s=mimecast20190719; t=1580244802;
 h=from:from:reply-to:subject:subject:date:date:message-id:message-id:
 to:to:cc:cc:mime-version:mime-version:content-type:content-type:
 content-transfer-encoding:content-transfer-encoding:
 in-reply-to:in-reply-to:references:references;
 bh=f0etUg0omWvogOZijwQIojqdg9L26X93rg39f5AAigs=;
 b=Iq5vWnAFZUPcp/vBvfHRt5t5ZWldiBS3j5urke7Hbk3WQynQ2UbBDatjTbXsDjds8jR9LN
 Otoi8Y95H/aLYXBHimaT+/1QLhSUE3iqFPCUMMgMA4f0s+KahiP3vD0OX3CB7dglA70Gxv
 Uq4T2V0+FhHrDONd8ez7BYO9IEQhDiE=
Received: from mimecast-mx01.redhat.com (mimecast-mx01.redhat.com
 [209.132.183.4]) (Using TLS) by relay.mimecast.com with ESMTP id
 us-mta-43-MrpHMsMVODiWg-ritfps7A-1; Tue, 28 Jan 2020 15:53:19 -0500
Received: from smtp.corp.redhat.com (int-mx03.intmail.prod.int.phx2.redhat.com
 [10.5.11.13])
 (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits))
 (No client certificate requested)
 by mimecast-mx01.redhat.com (Postfix) with ESMTPS id 68931800EBB;
 Tue, 28 Jan 2020 20:53:18 +0000 (UTC)
Received: from dhcp-25.97.bos.redhat.com (unknown [10.18.25.126])
 by smtp.corp.redhat.com (Postfix) with ESMTPS id 30E6D89E7D;
 Tue, 28 Jan 2020 20:53:17 +0000 (UTC)
From: Aaron Conole <aconole@redhat.com>
To: Ferruh Yigit <ferruh.yigit@intel.com>
Cc: Aaron Conole <aconole@redhat.com>,
 Michael Santana <maicolgabriel@hotmail.com>, dev@dpdk.org
References: <20200128162854.3367823-1-ferruh.yigit@intel.com>
Date: Tue, 28 Jan 2020 15:53:16 -0500
In-Reply-To: <20200128162854.3367823-1-ferruh.yigit@intel.com> (Ferruh Yigit's
 message of "Tue, 28 Jan 2020 16:28:54 +0000")
Message-ID: <f7tlfprl2v7.fsf@dhcp-25.97.bos.redhat.com>
User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/26.2 (gnu/linux)
MIME-Version: 1.0
X-Scanned-By: MIMEDefang 2.79 on 10.5.11.13
X-MC-Unique: MrpHMsMVODiWg-ritfps7A-1
X-Mimecast-Spam-Score: 0
X-Mimecast-Originator: redhat.com
Content-Type: text/plain
Content-Transfer-Encoding: quoted-printable
Subject: Re: [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 <dev.dpdk.org>
List-Unsubscribe: <https://mails.dpdk.org/options/dev>,
 <mailto:dev-request@dpdk.org?subject=unsubscribe>
List-Archive: <http://mails.dpdk.org/archives/dev/>
List-Post: <mailto:dev@dpdk.org>
List-Help: <mailto:dev-request@dpdk.org?subject=help>
List-Subscribe: <https://mails.dpdk.org/listinfo/dev>,
 <mailto:dev-request@dpdk.org?subject=subscribe>
Errors-To: dev-bounces@dpdk.org
Sender: "dev" <dev-bounces@dpdk.org>

Ferruh Yigit <ferruh.yigit@intel.com> writes:

> 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 <ferruh.yigit@intel.com>
> ---

It's okay to me.  I thought there was an effort to split out performance
part of this test from the functional part, but that seems to not have
gone anywhere.

Acked-by: Aaron Conole <aconole@redhat.com>


>  .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" !=3D "1" ]; then
>  fi
> =20
>  if [ "$RUN_TESTS" =3D "1" ]; then
> -    sudo meson test -C build --suite fast-tests -t 3
> +    sudo meson test -C build --suite fast-tests -t 10
>  fi