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 0F598A2E8D for ; Thu, 5 Sep 2019 17:54:54 +0200 (CEST) Received: from [92.243.14.124] (localhost [127.0.0.1]) by dpdk.org (Postfix) with ESMTP id 7E3A41EF89; Thu, 5 Sep 2019 17:54:53 +0200 (CEST) Received: from mx0b-0016f401.pphosted.com (mx0a-0016f401.pphosted.com [67.231.148.174]) by dpdk.org (Postfix) with ESMTP id 93F9D1EF7F for ; Thu, 5 Sep 2019 17:54:52 +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 x85Fsonc006991 for ; Thu, 5 Sep 2019 08:54:51 -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=kq/y48SZr5Aohkr5+ESPUYDEfmie+ICT1wA301nyxn8=; b=rOPWr1RqNg6SCosWHo36TEUtSzXd5CaD2/qksxFvjaP8vR5SWcqoFMrnMo344FnIVzCh 2q4sGypLjvZQGss6cJhs2N5f97apoqA1iIEJ8WPQfjMKOBjlJ5Vu0hvJVK+TzUuJMO9G DvGIdjb0BpTZqb36Y5YJiRPwZkQKRaIf9XwYJnHcVeuw/9PQbh+SRuMl2CFp9/9teTzG WmPIb6ejPWAq7vY2OfNQoT7oq9wZtPvzV5TtkMoVgURJlPC4kiI+LHsVHIjJLt67za8w 3endyOcNCLmMJFamuhc4wKMK6f4DT0B50QGsqGKal98mQOE2nn7mdaCFl1I0/igog0bU vQ== Received: from sc-exch01.marvell.com ([199.233.58.181]) by mx0a-0016f401.pphosted.com with ESMTP id 2uqp8pm5m1-1 (version=TLSv1.2 cipher=ECDHE-RSA-AES256-SHA384 bits=256 verify=NOT) for ; Thu, 05 Sep 2019 08:54:51 -0700 Received: from SC-EXCH03.marvell.com (10.93.176.83) by SC-EXCH01.marvell.com (10.93.176.81) with Microsoft SMTP Server (TLS) id 15.0.1367.3; Thu, 5 Sep 2019 08:54:49 -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; Thu, 5 Sep 2019 08:54:49 -0700 Received: from dc7-eodlnx04.marvell.com (dc7-eodlnx04.marvell.com [10.28.113.54]) by maili.marvell.com (Postfix) with ESMTP id 6AAFF3F703F; Thu, 5 Sep 2019 08:54:48 -0700 (PDT) From: To: CC: , Amit Gupta Date: Thu, 5 Sep 2019 21:24:43 +0530 Message-ID: <1567698883-10307-1-git-send-email-agupta3@marvell.com> X-Mailer: git-send-email 1.8.3.1 MIME-Version: 1.0 Content-Type: text/plain X-Proofpoint-Virus-Version: vendor=fsecure engine=2.50.10434:6.0.70,1.0.8 definitions=2019-09-05_05:2019-09-04,2019-09-05 signatures=0 Subject: [dpdk-dev] [PATCH] test/meson: hash lf test moved to dpdk perf testsuite 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" From: Amit Gupta hash_readwrite_lf test always getting TIMEOUT as required time to finish this test was much longer compare to time required for fast tests(10s). Hence, the test is being moved to perf test category for execution to complete. Change-Id: I64ae14a5ecfbea466d8a057c070579c0794a7377 Signed-off-by: Amit Gupta --- app/test/meson.build | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/test/meson.build b/app/test/meson.build index 94fd9f8..34141c5 100644 --- a/app/test/meson.build +++ b/app/test/meson.build @@ -220,7 +220,6 @@ fast_test_names = [ 'eventdev_common_autotest', 'fbarray_autotest', 'hash_readwrite_func_autotest', - 'hash_readwrite_lf_autotest', 'ipsec_autotest', 'kni_autotest', 'kvargs_autotest', @@ -263,6 +262,7 @@ perf_test_names = [ 'stack_lf_perf_autotest', 'rand_perf_autotest', 'hash_readwrite_perf_autotest', + 'hash_readwrite_lf_autotest', ] driver_test_names = [ -- 1.8.3.1