From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org X-Spam-Level: X-Spam-Status: No, score=-9.5 required=3.0 tests=DKIM_INVALID,DKIM_SIGNED, HEADER_FROM_DIFFERENT_DOMAINS,INCLUDES_PATCH,MAILING_LIST_MULTI,SIGNED_OFF_BY, SPF_HELO_NONE,SPF_PASS,URIBL_BLOCKED,USER_AGENT_GIT autolearn=ham autolearn_force=no version=3.4.0 Received: from mail.kernel.org (mail.kernel.org [198.145.29.99]) by smtp.lore.kernel.org (Postfix) with ESMTP id CDD77C43331 for ; Fri, 6 Sep 2019 05:50:17 +0000 (UTC) Received: from dpdk.org (dpdk.org [92.243.14.124]) by mail.kernel.org (Postfix) with ESMTP id 6F7692070C for ; Fri, 6 Sep 2019 05:50:17 +0000 (UTC) Authentication-Results: mail.kernel.org; dkim=fail reason="signature verification failed" (2048-bit key) header.d=marvell.com header.i=@marvell.com header.b="Yv9SqFf+" DMARC-Filter: OpenDMARC Filter v1.3.2 mail.kernel.org 6F7692070C Authentication-Results: mail.kernel.org; dmarc=fail (p=none dis=none) header.from=marvell.com Authentication-Results: mail.kernel.org; spf=pass smtp.mailfrom=dev-bounces@dpdk.org Received: from [92.243.14.124] (localhost [127.0.0.1]) by dpdk.org (Postfix) with ESMTP id 88D081F12C; Fri, 6 Sep 2019 07:50:16 +0200 (CEST) Received: from mx0b-0016f401.pphosted.com (mx0b-0016f401.pphosted.com [67.231.156.173]) by dpdk.org (Postfix) with ESMTP id 0DCB21F12A for ; Fri, 6 Sep 2019 07:50:14 +0200 (CEST) Received: from pps.filterd (m0045851.ppops.net [127.0.0.1]) by mx0b-0016f401.pphosted.com (8.16.0.42/8.16.0.42) with SMTP id x865o862006297; Thu, 5 Sep 2019 22:50:14 -0700 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=marvell.com; h=from : to : cc : subject : date : message-id : in-reply-to : references : mime-version : content-type; s=pfpt0818; bh=dIYuleA136yo9k/qpDOBXgJKgG2wHw4KeHwsPiFWeQM=; b=Yv9SqFf+cia1hRtJBCbbu9ulgEfnOoout+htvtWnLGEMSZhgJrtUsSoOCdygHm5MTykN wh/PaJueFyiYlms2XSKxuizERVeFU+QfF/ZTUykHKK1RYC8CQQxuwvCGOu9uow+AEh3X 0Hdal8hKcYijrV+jfzTxYx0IeKVj4xtzd23BeJRsMpqhvs8QylUoder1KS38MhVfWlKJ 3eLm1W5ODcD/8wpCRUu+2GFCEQGNj66ohF/GEx/8891yRGUEIChGJEg+x8ZCyI2XXbbi CukuyIQbagA/RQ5CWqHr/y4uKhLGabO8LAOk/7izhxK/rZFvjt+x5i7+fHTd4R0FyYU/ RA== Received: from sc-exch01.marvell.com ([199.233.58.181]) by mx0b-0016f401.pphosted.com with ESMTP id 2uqrdmnspx-1 (version=TLSv1.2 cipher=ECDHE-RSA-AES256-SHA384 bits=256 verify=NOT); Thu, 05 Sep 2019 22:50:14 -0700 Received: from SC-EXCH01.marvell.com (10.93.176.81) by SC-EXCH01.marvell.com (10.93.176.81) with Microsoft SMTP Server (TLS) id 15.0.1367.3; Thu, 5 Sep 2019 22:50:12 -0700 Received: from maili.marvell.com (10.93.176.43) by SC-EXCH01.marvell.com (10.93.176.81) with Microsoft SMTP Server id 15.0.1367.3 via Frontend Transport; Thu, 5 Sep 2019 22:50:12 -0700 Received: from dc7-eodlnx04.marvell.com (dc7-eodlnx04.marvell.com [10.28.113.54]) by maili.marvell.com (Postfix) with ESMTP id CC81E3F703F; Thu, 5 Sep 2019 22:50:09 -0700 (PDT) From: To: , , , CC: , Amit Gupta Date: Fri, 6 Sep 2019 11:19:33 +0530 Message-ID: <1567748973-24192-3-git-send-email-agupta3@marvell.com> X-Mailer: git-send-email 1.8.3.1 In-Reply-To: <1567748973-24192-1-git-send-email-agupta3@marvell.com> References: <1567748973-24192-1-git-send-email-agupta3@marvell.com> 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-06_03:2019-09-04,2019-09-06 signatures=0 Subject: [dpdk-dev] [PATCH 2/2] 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 its execution to complete. 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