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 2DACCA054F; Mon, 15 Mar 2021 11:02:36 +0100 (CET) Received: from [217.70.189.124] (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id 20C7624260B; Mon, 15 Mar 2021 11:02:36 +0100 (CET) Received: from mga04.intel.com (mga04.intel.com [192.55.52.120]) by mails.dpdk.org (Postfix) with ESMTP id 5382C4003C for ; Mon, 15 Mar 2021 11:02:34 +0100 (CET) IronPort-SDR: n3oAl1HYeJGcHysARzW17fGr6H59BcprrlP0joTMgfpISAxLLrSBg057UCxR0VB64DG5SKpoBp /8z4nChCVaBw== X-IronPort-AV: E=McAfee;i="6000,8403,9923"; a="186684513" X-IronPort-AV: E=Sophos;i="5.81,249,1610438400"; d="scan'208";a="186684513" Received: from orsmga008.jf.intel.com ([10.7.209.65]) by fmsmga104.fm.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 15 Mar 2021 03:02:33 -0700 IronPort-SDR: zSySL6CDrfHd+KtJWSWs6hGfKFh1gl1Akwd8yAzGnFezJkb5jkHMYzHbAswmijtaEefTqK/IT3 xsnhZigns+5A== X-IronPort-AV: E=Sophos;i="5.81,249,1610438400"; d="scan'208";a="411786282" Received: from unknown (HELO localhost.localdomain) ([10.240.183.222]) by orsmga008-auth.jf.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 15 Mar 2021 03:02:31 -0700 From: Ling Wei To: dts@dpdk.org Cc: Ling Wei Date: Mon, 15 Mar 2021 18:01:36 +0800 Message-Id: <20210315100136.27966-1-weix.ling@intel.com> X-Mailer: git-send-email 2.25.1 MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Subject: [dts] [PATCH V1] tests/vhost_user_live_migration:delete invalid code 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" Delete self.stop_send_pkts_on_tester() step in tear_down, because of framework will auto stop pktgen. Signed-off-by: Ling Wei --- tests/TestSuite_vhost_user_live_migration.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/TestSuite_vhost_user_live_migration.py b/tests/TestSuite_vhost_user_live_migration.py index 915fa596..d5d1af65 100644 --- a/tests/TestSuite_vhost_user_live_migration.py +++ b/tests/TestSuite_vhost_user_live_migration.py @@ -449,7 +449,7 @@ class TestVhostUserLiveMigration(TestCase): def tear_down(self): self.destroy_vm_env() # stop send packet on tester - self.stop_send_pkts_on_tester() + # self.stop_send_pkts_on_tester() self.duts[0].send_expect('killall -s INT qemu-system-x86_64', '#') self.duts[1].send_expect('killall -s INT qemu-system-x86_64', '#') pass -- 2.25.1