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 B3F1CA0563; Mon, 23 Mar 2020 05:16:43 +0100 (CET) Received: from [92.243.14.124] (localhost [127.0.0.1]) by dpdk.org (Postfix) with ESMTP id 698CB1C02D; Mon, 23 Mar 2020 05:16:36 +0100 (CET) Received: from foss.arm.com (foss.arm.com [217.140.110.172]) by dpdk.org (Postfix) with ESMTP id 7B8471C02C for ; Mon, 23 Mar 2020 05:16:35 +0100 (CET) Received: from usa-sjc-imap-foss1.foss.arm.com (unknown [10.121.207.14]) by usa-sjc-mx-foss1.foss.arm.com (Postfix) with ESMTP id F1D001FB; Sun, 22 Mar 2020 21:16:34 -0700 (PDT) Received: from phil-VirtualBox.arm.com (unknown [10.170.243.36]) by usa-sjc-imap-foss1.foss.arm.com (Postfix) with ESMTPA id 2F6363F52E; Sun, 22 Mar 2020 21:16:31 -0700 (PDT) From: Phil Yang To: aconole@redhat.com, maicolgabriel@hotmail.com, dev@dpdk.org Cc: david.marchand@redhat.com, drc@linux.vnet.ibm.com, gavin.hu@arm.com, Honnappa.Nagarahalli@arm.com, ruifeng.wang@arm.com, nd@arm.com Date: Mon, 23 Mar 2020 12:16:18 +0800 Message-Id: <1584936978-11899-2-git-send-email-phil.yang@arm.com> X-Mailer: git-send-email 2.7.4 In-Reply-To: <1584936978-11899-1-git-send-email-phil.yang@arm.com> References: <1584936978-11899-1-git-send-email-phil.yang@arm.com> Subject: [dpdk-dev] [PATCH 2/2] 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" Reduce the number of loops to 10K to avoid the meson test timeout warning. Signed-off-by: Phil Yang Reviewed-by: Gavin Hu --- app/test/test_atomic.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/test/test_atomic.c b/app/test/test_atomic.c index de3030d..661fecc 100644 --- a/app/test/test_atomic.c +++ b/app/test/test_atomic.c @@ -99,7 +99,7 @@ #define NUM_ATOMIC_TYPES 3 -#define N 1000000 +#define N 10000 static rte_atomic16_t a16; static rte_atomic32_t a32; -- 2.7.4