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 1E7CDA04F1 for ; Mon, 6 Jan 2020 08:42:55 +0100 (CET) Received: from [92.243.14.124] (localhost [127.0.0.1]) by dpdk.org (Postfix) with ESMTP id DD6561D5E8; Mon, 6 Jan 2020 08:42:53 +0100 (CET) Received: from mx0b-0016f401.pphosted.com (mx0a-0016f401.pphosted.com [67.231.148.174]) by dpdk.org (Postfix) with ESMTP id DBB9D1D5DC; Mon, 6 Jan 2020 08:42:50 +0100 (CET) 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 0067glxX030634; Sun, 5 Jan 2020 23:42:50 -0800 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-transfer-encoding : content-type; s=pfpt0818; bh=rbNZ3pqOH9MNNAhOFmanP8hRKKqp73rUtnJrHprQbYU=; b=j2VSsvccRCiFCzx6LFagT+Zj6uuCEdTHti6x1QvHJN6yhsmeCGCz5kJY91zjFvOacJvQ z+LvWsfUqEcDqq3X1dqke+ySY8aGxrdC0pj1bFQ3lVO6GpSZEtmbwCBjoAJLmAoh0tJu 6Xw+rJuEL4KZVLSFahlT+JINHHJFlPDUs/IZarWdEL/D6f0XhK/5Goi6gkkJn53U0T4n ytGzjxBhP3uHuYLpakNgwQeuGYush2spYeY3RbQ1jWFjVVyJ2FTVaZAeZnBFoVMGaWyx 9krASrJuUjo+a7cLVZ+Apj5U29OhyVN3pLBMUJv4JuJs5gPE5UfN4FJYF4H41MjorU/E Rg== Received: from sc-exch02.marvell.com ([199.233.58.182]) by mx0a-0016f401.pphosted.com with ESMTP id 2xarxv4yp7-1 (version=TLSv1.2 cipher=ECDHE-RSA-AES256-SHA384 bits=256 verify=NOT); Sun, 05 Jan 2020 23:42:49 -0800 Received: from SC-EXCH03.marvell.com (10.93.176.83) by SC-EXCH02.marvell.com (10.93.176.82) with Microsoft SMTP Server (TLS) id 15.0.1497.2; Sun, 5 Jan 2020 23:42:48 -0800 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.1497.2 via Frontend Transport; Sun, 5 Jan 2020 23:42:48 -0800 Received: from BG-LT7430.marvell.com (bg-lt7430.marvell.com [10.28.10.90]) by maili.marvell.com (Postfix) with ESMTP id 58CB23F703F; Sun, 5 Jan 2020 23:42:47 -0800 (PST) From: To: CC: , Pavan Nikhilesh , Date: Mon, 6 Jan 2020 13:12:42 +0530 Message-ID: <20200106074243.2336-2-pbhagavatula@marvell.com> X-Mailer: git-send-email 2.17.1 In-Reply-To: <20200106074243.2336-1-pbhagavatula@marvell.com> References: <20200106074243.2336-1-pbhagavatula@marvell.com> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Content-Type: text/plain X-Proofpoint-Virus-Version: vendor=fsecure engine=2.50.10434:6.0.95,18.0.572 definitions=2020-01-06_01:2020-01-06,2020-01-06 signatures=0 Subject: [dpdk-stable] [dpdk-dev] [PATCH 2/2] test/eventdev: fix octeontx2 event device name X-BeenThere: stable@dpdk.org X-Mailman-Version: 2.1.15 Precedence: list List-Id: patches for DPDK stable branches List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: stable-bounces@dpdk.org Sender: "stable" From: Pavan Nikhilesh Fix octeontx2 event device name used in eventdevice test. Fixes: 62561532ac4c ("event/octeontx2: add SSO selftest") Cc: stable@dpdk.org 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 56155838d..43ccb1ce9 100644 --- a/app/test/test_eventdev.c +++ b/app/test/test_eventdev.c @@ -1021,7 +1021,7 @@ test_eventdev_selftest_octeontx(void) static int test_eventdev_selftest_octeontx2(void) { - return test_eventdev_selftest_impl("otx2_eventdev", ""); + return test_eventdev_selftest_impl("event_octeontx2", ""); } static int -- 2.17.1