From patchwork Wed Jul 14 14:41:22 2021 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Phanendra Vukkisala X-Patchwork-Id: 95863 Return-Path: X-Original-To: patchwork@inbox.dpdk.org Delivered-To: patchwork@inbox.dpdk.org Received: from mails.dpdk.org (mails.dpdk.org [217.70.189.124]) by inbox.dpdk.org (Postfix) with ESMTP id EAE3AA0C43; Wed, 14 Jul 2021 16:41:45 +0200 (CEST) Received: from [217.70.189.124] (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id B616440E3C; Wed, 14 Jul 2021 16:41:45 +0200 (CEST) Received: from mx0b-0016f401.pphosted.com (mx0a-0016f401.pphosted.com [67.231.148.174]) by mails.dpdk.org (Postfix) with ESMTP id 66DE94069F for ; Wed, 14 Jul 2021 16:41:44 +0200 (CEST) Received: from pps.filterd (m0045849.ppops.net [127.0.0.1]) by mx0a-0016f401.pphosted.com (8.16.0.43/8.16.0.43) with SMTP id 16EEfM3d018822 for ; Wed, 14 Jul 2021 07:41:43 -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=pfpt0220; bh=xsfrWdnjtTfeS+DWVPUo9VlgMXZKPIxdTLFlGRVXkfY=; b=SpOQw1t0DkfoBay+dqLT28WfqNMkXZAUio8+CX/5jv7q95NOsvxY0NIothgDbhCRSAo/ QLAQaSvjc40oR9r9gtYHhZFw2ElKC9jAJL16SGRZNrDDNeZut3gZ718iIUoMYUXfqFmB k+Dkq7EItE68goJR+d0KtpmcIjJjkJ+wDNsrs9gTqR/j5Fox8kFvBU7kl31IlAmSGEmW GIMP+H+kyhBe2T6ngNxQsWp2J53dGK7TOeacfoXOZyLJuPbm3xOEyxMm28G9cbuFBpmq dyP0ofUP1pWRqVHihyLPL5zxXshS80XvrByjWww6e0IDpehgPSEWmDhiBMzDpwqBVXWY Xg== Received: from dc5-exch02.marvell.com ([199.233.59.182]) by mx0a-0016f401.pphosted.com with ESMTP id 39swverx15-1 (version=TLSv1.2 cipher=ECDHE-RSA-AES256-SHA384 bits=256 verify=NOT) for ; Wed, 14 Jul 2021 07:41:43 -0700 Received: from DC5-EXCH01.marvell.com (10.69.176.38) by DC5-EXCH02.marvell.com (10.69.176.39) with Microsoft SMTP Server (TLS) id 15.0.1497.18; Wed, 14 Jul 2021 07:41:42 -0700 Received: from maili.marvell.com (10.69.176.80) by DC5-EXCH01.marvell.com (10.69.176.38) with Microsoft SMTP Server id 15.0.1497.18 via Frontend Transport; Wed, 14 Jul 2021 07:41:41 -0700 Received: from phanendra-system.marvell.com (phanendra-system.marvell.com [10.28.8.78]) by maili.marvell.com (Postfix) with ESMTP id 38A943F7040; Wed, 14 Jul 2021 07:41:40 -0700 (PDT) From: To: CC: Phanendra Vukkisala Date: Wed, 14 Jul 2021 20:11:22 +0530 Message-ID: <1626273682-26544-1-git-send-email-pvukkisala@marvell.com> X-Mailer: git-send-email 1.7.9.5 MIME-Version: 1.0 X-Proofpoint-GUID: vz5Pe6fil2tSTYeZ_S52IYCQzHG--igu X-Proofpoint-ORIG-GUID: vz5Pe6fil2tSTYeZ_S52IYCQzHG--igu X-Proofpoint-Virus-Version: vendor=fsecure engine=2.50.10434:6.0.391, 18.0.790 definitions=2021-07-14_08:2021-07-14, 2021-07-14 signatures=0 Subject: [dts] [PATCH] TestSuite_vlan.py: Exit from testpmd with quit in teardown X-BeenThere: dts@dpdk.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: test suite reviews and discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: dts-bounces@dpdk.org Sender: "dts" From: Phanendra Vukkisala Signed-off-by: Phanendra Vukkisala --- tests/TestSuite_vlan.py | 1 + 1 file changed, 1 insertion(+) diff --git a/tests/TestSuite_vlan.py b/tests/TestSuite_vlan.py index c1c09ee..ec4cca7 100644 --- a/tests/TestSuite_vlan.py +++ b/tests/TestSuite_vlan.py @@ -201,4 +201,5 @@ class TestVlan(TestCase): """ Run after each test suite. """ + self.dut.send_expect("quit", "# ", 30) self.dut.kill_all()