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 376F3A0353; Mon, 4 Nov 2019 02:49:06 +0100 (CET) Received: from [92.243.14.124] (localhost [127.0.0.1]) by dpdk.org (Postfix) with ESMTP id EAD741BE98; Mon, 4 Nov 2019 02:49:05 +0100 (CET) Received: from mga18.intel.com (mga18.intel.com [134.134.136.126]) by dpdk.org (Postfix) with ESMTP id 46AF81BE92 for ; Mon, 4 Nov 2019 02:49:04 +0100 (CET) X-Amp-Result: SKIPPED(no attachment in message) X-Amp-File-Uploaded: False Received: from fmsmga004.fm.intel.com ([10.253.24.48]) by orsmga106.jf.intel.com with ESMTP/TLS/DHE-RSA-AES256-GCM-SHA384; 03 Nov 2019 17:49:02 -0800 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.68,265,1569308400"; d="scan'208";a="226607017" Received: from unknown (HELO dts_test_host.sh.intel.com) ([10.239.182.180]) by fmsmga004.fm.intel.com with ESMTP; 03 Nov 2019 17:49:02 -0800 From: michael.luo@intel.com To: dts@dpdk.org Date: Mon, 4 Nov 2019 09:43:24 +0800 Message-Id: <1572831804-69833-1-git-send-email-michael.luo@intel.com> X-Mailer: git-send-email 2.7.4 Subject: [dts] [PATCH] tests/vf_jumboframe: add kill_all in tear_down X-BeenThere: dts@dpdk.org X-Mailman-Version: 2.1.15 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: Gaoliang Luo testpmd may not quit if a test case was ended because of verifying failure. Signed-off-by: Gaoliang Luo --- tests/TestSuite_vf_jumboframe.py | 1 + 1 file changed, 1 insertion(+) diff --git a/tests/TestSuite_vf_jumboframe.py b/tests/TestSuite_vf_jumboframe.py index f17e30e..f0826c6 100644 --- a/tests/TestSuite_vf_jumboframe.py +++ b/tests/TestSuite_vf_jumboframe.py @@ -322,6 +322,7 @@ class TestVfJumboFrame(TestCase): """ Run after each test case. """ + self.dut.kill_all() pass def tear_down_all(self): -- 2.7.4