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 8722EA04B6; Thu, 17 Sep 2020 11:17:39 +0200 (CEST) Received: from [92.243.14.124] (localhost [127.0.0.1]) by dpdk.org (Postfix) with ESMTP id 6C4F71D5C5; Thu, 17 Sep 2020 11:17:39 +0200 (CEST) Received: from mailgw02.pantheon.sk (mailgw01.pantheon.sk [46.229.239.26]) by dpdk.org (Postfix) with ESMTP id 4B6BD1D5C5 for ; Thu, 17 Sep 2020 11:17:38 +0200 (CEST) Received: from mailgw02.pantheon.sk (localhost.localdomain [127.0.0.1]) by mailgw02.pantheon.sk (Proxmox) with ESMTP id 08A51182D9F; Thu, 17 Sep 2020 11:17:38 +0200 (CEST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=pantheon.tech; h=cc:cc:content-transfer-encoding:content-type:content-type :date:from:from:in-reply-to:message-id:mime-version:references :reply-to:subject:subject:to:to; s=dkim; bh=QdKi85LYL0VTateIYwve PBKzJMy+KsIZjMYNNAcMMQg=; b=vuJwMlaAH8ru0anYjgiT9TqC3MBRG7vn81MD PycXq1JRBHVOz4BJcju9PAuT+FhWeSvZCe36xoDdZZXG4BK9oUMN8x/AoHg9HJqg fZ6OJ+xM0SmhhQY/DDhpAiBZCRZWN+TCRNuNtvCZo6Xherlr/KFPw2qdigPtCWDV /k336C7XTaJUVOhGFTaHPPKn92QpRhOIXubkJj7T3ArI2YBm11S1C2FDqyUKP7AK /VnsDPSM90jAGeMh2vr40qI8Bbw2tGQHkkymPr1bpuQ5V2EVZhifMoSvH4JVideX 9c0FAEKaM+p9TFQNLr9ypt6Us50T39tn+LT/k/l62AbFuNM1pQ== From: =?iso-8859-2?Q?Juraj_Linke=B9?= To: Phil Yang , "david.marchand@redhat.com" , "dev@dpdk.org" CC: "aconole@redhat.com" , "Honnappa.Nagarahalli@arm.com" , "Ruifeng.Wang@arm.com" , "nd@arm.com" Thread-Topic: [dpdk-dev] [PATCH v2] test/atomic: reduce the number of loops to avoid timeouts Thread-Index: AQHWZJEWFJpYam8HWUe7A6hp1B6AH6ls3Yog Date: Thu, 17 Sep 2020 09:17:37 +0000 Message-ID: <10c11e6860fb4baf841fa1727504d42f@pantheon.tech> References: <1584936978-11899-2-git-send-email-phil.yang@arm.com> <1595907697-20260-1-git-send-email-phil.yang@arm.com> In-Reply-To: <1595907697-20260-1-git-send-email-phil.yang@arm.com> Accept-Language: en-US Content-Language: en-US X-MS-Has-Attach: X-MS-TNEF-Correlator: x-originating-ip: [10.101.4.10] Content-Type: text/plain; charset="iso-8859-2" Content-Transfer-Encoding: quoted-printable MIME-Version: 1.0 Subject: Re: [dpdk-dev] [PATCH v2] test/atomic: reduce the number of loops to avoid timeouts 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" > -----Original Message----- > From: dev On Behalf Of Phil Yang > Sent: Tuesday, July 28, 2020 5:42 AM > To: david.marchand@redhat.com; dev@dpdk.org > Cc: aconole@redhat.com; Honnappa.Nagarahalli@arm.com; > Ruifeng.Wang@arm.com; nd@arm.com > Subject: [dpdk-dev] [PATCH v2] test/atomic: reduce the number of loops to > avoid timeouts >=20 > Reduce the number of loops to 10K to avoid the meson test timeout warning= . >=20 > For example: > $ sudo meson test -C build --suite DPDK:fast-tests / atomic_autotest -t 5= 0 [...] > 1/1 DPDK:fast-tests / atomic_autotest OK 187.35s >=20 > Signed-off-by: Phil Yang > --- > v2: > Split from the original patchset. >=20 > app/test/test_atomic.c | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) >=20 > diff --git a/app/test/test_atomic.c b/app/test/test_atomic.c index > 214452e..9b70f44 100644 > --- a/app/test/test_atomic.c > +++ b/app/test/test_atomic.c > @@ -99,7 +99,7 @@ >=20 > #define NUM_ATOMIC_TYPES 3 >=20 > -#define N 1000000 > +#define N 10000 >=20 > static rte_atomic16_t a16; > static rte_atomic32_t a32; > -- > 2.7.4 >=20 Reviewed-by: Juraj Linke=B9