From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mails.dpdk.org (mails.dpdk.org [217.70.189.124]) by inbox.dpdk.org (Postfix) with ESMTP id B97C445BA0; Tue, 22 Oct 2024 14:03:37 +0200 (CEST) Received: from mails.dpdk.org (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id 8A3A64029A; Tue, 22 Oct 2024 14:03:37 +0200 (CEST) Received: from mx0b-0016f401.pphosted.com (mx0b-0016f401.pphosted.com [67.231.156.173]) by mails.dpdk.org (Postfix) with ESMTP id 7158540273 for ; Tue, 22 Oct 2024 14:03:36 +0200 (CEST) Received: from pps.filterd (m0045851.ppops.net [127.0.0.1]) by mx0b-0016f401.pphosted.com (8.18.1.2/8.18.1.2) with ESMTP id 49M94JOl010130 for ; Tue, 22 Oct 2024 05:03:35 -0700 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=marvell.com; h= cc:content-transfer-encoding:content-type:date:from:message-id :mime-version:subject:to; s=pfpt0220; bh=WupGIR0d4IO3rlDjj//u5oO Gjt9eRrdoPHuWo9g1Mbc=; b=dhHaq5EIoHEpMMssH2KGqnCXob8WK/EtioyIhEq L3KcnMk4wBly+82wvkImRGlUCKnch9BTVsra6WWQNJXx9b1YV87TL9ci7qLiknvJ L1inWAwVAeQQBjpZZmNl0UW9w+HA/3gE6ygUmieqLXx/SnFbPNWBtei2Qfi9uVMp nlW6F+/KjZiDgSKb3IKg2JKuuJqTD3vNFG7eEWgawPl1hCllnuTFiv5nzAJR3xWE SZh8JjUV02P64TExTsoT0q0iZy4++onU9WEMXMrDix5k1QdEP4shFwHyfRW25eCu ZRY0J+BTuiLBT4UkK/t5/opTD3PToBbbuR8JdY2/MAFHebA== Received: from dc5-exch05.marvell.com ([199.233.59.128]) by mx0b-0016f401.pphosted.com (PPS) with ESMTPS id 42e5290tyu-4 (version=TLSv1.2 cipher=ECDHE-RSA-AES256-GCM-SHA384 bits=256 verify=NOT) for ; Tue, 22 Oct 2024 05:03:35 -0700 (PDT) Received: from DC5-EXCH05.marvell.com (10.69.176.209) by DC5-EXCH05.marvell.com (10.69.176.209) with Microsoft SMTP Server (version=TLS1_2, cipher=TLS_ECDHE_RSA_WITH_AES_256_GCM_SHA384) id 15.2.1544.4; Tue, 22 Oct 2024 05:03:33 -0700 Received: from maili.marvell.com (10.69.176.80) by DC5-EXCH05.marvell.com (10.69.176.209) with Microsoft SMTP Server id 15.2.1544.4 via Frontend Transport; Tue, 22 Oct 2024 05:03:33 -0700 Received: from MININT-80QBFE8.corp.innovium.com (MININT-80QBFE8.marvell.com [10.28.164.106]) by maili.marvell.com (Postfix) with ESMTP id BE3253F705D; Tue, 22 Oct 2024 05:03:31 -0700 (PDT) From: To: CC: , Pavan Nikhilesh Subject: [PATCH] test/event: fix device stop Date: Tue, 22 Oct 2024 17:33:29 +0530 Message-ID: <20241022120329.16420-1-pbhagavatula@marvell.com> X-Mailer: git-send-email 2.25.1 MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Content-Type: text/plain X-Proofpoint-ORIG-GUID: u6OKuDgXgMnoHITI8Ed6OR7402XodH0X X-Proofpoint-GUID: u6OKuDgXgMnoHITI8Ed6OR7402XodH0X X-Proofpoint-Virus-Version: vendor=baseguard engine=ICAP:2.0.293,Aquarius:18.0.1039,Hydra:6.0.680,FMLib:17.12.60.29 definitions=2024-09-06_09,2024-09-06_01,2024-09-02_01 X-BeenThere: dev@dpdk.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: DPDK patches and discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: dev-bounces@dpdk.org From: Pavan Nikhilesh Fix missing event device stop after finishing the test case. Fixes: acc65ee307f7 ("eventdev: introduce event pre-scheduling") Signed-off-by: Pavan Nikhilesh --- app/test/test_eventdev.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/test/test_eventdev.c b/app/test/test_eventdev.c index a9258d2abc..b03a62fe70 100644 --- a/app/test/test_eventdev.c +++ b/app/test/test_eventdev.c @@ -1450,7 +1450,7 @@ static struct unit_test_suite eventdev_common_testsuite = { test_eventdev_start_stop), TEST_CASE_ST(eventdev_configure_setup, eventdev_stop_device, test_eventdev_profile_switch), - TEST_CASE_ST(eventdev_configure_setup, NULL, + TEST_CASE_ST(eventdev_configure_setup, eventdev_stop_device, test_eventdev_preschedule_configure), TEST_CASE_ST(eventdev_configure_setup, eventdev_stop_device, test_eventdev_preschedule_modify), -- 2.25.1