From patchwork Tue Jul 6 07:12:41 2021 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Phanendra Vukkisala X-Patchwork-Id: 95335 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 30096A0C47; Tue, 6 Jul 2021 09:13:06 +0200 (CEST) Received: from [217.70.189.124] (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id 16C8C40688; Tue, 6 Jul 2021 09:13:06 +0200 (CEST) Received: from mx0b-0016f401.pphosted.com (mx0b-0016f401.pphosted.com [67.231.156.173]) by mails.dpdk.org (Postfix) with ESMTP id 8E1464067E for ; Tue, 6 Jul 2021 09:13:04 +0200 (CEST) Received: from pps.filterd (m0045851.ppops.net [127.0.0.1]) by mx0b-0016f401.pphosted.com (8.16.0.43/8.16.0.43) with SMTP id 1667Bt2v013841 for ; Tue, 6 Jul 2021 00:13:03 -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=eRSk4dVlCgEctHIK9IiYXwzNxV4U+kl9YPshZoTQKs4=; b=DWkt/v1o1cAUtpNF5WuuNUZvW647uwh1xchWjlB2g9WYlxk7NE0KIpf2Dl9Tpv47eKDx lyjpYvXZmdO5YudSFL3b8tV440abkc+FegkmpjjbAWNmeAA1uLaOJWVhNehp77Q1nwMJ xZMPm+ZO/3ZgTNgSqCURuVW/UwdN/KLLEaTeQ/RzkcqBUQ6B4p0ob9+iekxPr5s0nDFZ CWHNtQFVDClFlOTIXyg4aeYfzfWs65VqSZBGrIqrwkQLfKo1U2zYh78K4kO+T+0tfmso Q2OCuLsqu2y3ltRdVqFHddQMTYGI9lhB/mauYDM3aHVCz7ofYHxT+uvHI571ivU9tVvt gw== Received: from dc5-exch02.marvell.com ([199.233.59.182]) by mx0b-0016f401.pphosted.com with ESMTP id 39kt2mbxw9-1 (version=TLSv1.2 cipher=ECDHE-RSA-AES256-SHA384 bits=256 verify=NOT) for ; Tue, 06 Jul 2021 00:13:03 -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; Tue, 6 Jul 2021 00:13:01 -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; Tue, 6 Jul 2021 00:13:01 -0700 Received: from phanendra-system.marvell.com (phanendra-system.marvell.com [10.28.8.78]) by maili.marvell.com (Postfix) with ESMTP id 10C113F7067; Tue, 6 Jul 2021 00:13:00 -0700 (PDT) From: To: CC: Phanendra Vukkisala Date: Tue, 6 Jul 2021 12:42:41 +0530 Message-ID: <1625555561-28775-1-git-send-email-pvukkisala@marvell.com> X-Mailer: git-send-email 1.7.9.5 MIME-Version: 1.0 X-Proofpoint-ORIG-GUID: bCv4mnwCJ_xn5hpszS35ZfoK8gbHWSDA X-Proofpoint-GUID: bCv4mnwCJ_xn5hpszS35ZfoK8gbHWSDA X-Proofpoint-Virus-Version: vendor=fsecure engine=2.50.10434:6.0.391, 18.0.790 definitions=2021-07-06_02:2021-07-02, 2021-07-06 signatures=0 Subject: [dts] [PATCH] TestSuite_tso.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_tso.py | 1 + 1 file changed, 1 insertion(+) diff --git a/tests/TestSuite_tso.py b/tests/TestSuite_tso.py index 3ef1d42..1b5cda6 100644 --- a/tests/TestSuite_tso.py +++ b/tests/TestSuite_tso.py @@ -473,6 +473,7 @@ class TestTSO(TestCase): """ Run after each test case. """ + self.dut.send_expect("quit", "# ") self.dut.kill_all() time.sleep(2)