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 699E1A054F; Tue, 16 Mar 2021 08:27:40 +0100 (CET) Received: from [217.70.189.124] (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id 647764069F; Tue, 16 Mar 2021 08:27:40 +0100 (CET) Received: from mga06.intel.com (mga06.intel.com [134.134.136.31]) by mails.dpdk.org (Postfix) with ESMTP id 2BC3040042 for ; Tue, 16 Mar 2021 08:27:39 +0100 (CET) IronPort-SDR: oeOxaySXQ0gIKoRo10se+8ZyGZhij0ugFrgbvk6jlNs9Rwzxo+KCcMFLpLnUmHyBQGWE+tJqKm vQxCsLV4bgcQ== X-IronPort-AV: E=McAfee;i="6000,8403,9924"; a="250578681" X-IronPort-AV: E=Sophos;i="5.81,251,1610438400"; d="scan'208";a="250578681" Received: from fmsmga008.fm.intel.com ([10.253.24.58]) by orsmga104.jf.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 16 Mar 2021 00:27:38 -0700 IronPort-SDR: KACW39aahIZbo6+z/vQdh/v/V8fZJ3Pt8ZBVf7FHnLKup+W9dv9cITBRNVQ4bWcZ4swv8UfSZh 83+Q4/9grvwQ== X-IronPort-AV: E=Sophos;i="5.81,251,1610438400"; d="scan'208";a="405451287" Received: from unknown (HELO localhost.localdomain) ([10.240.183.222]) by fmsmga008-auth.fm.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 16 Mar 2021 00:27:36 -0700 From: Ling Wei To: dts@dpdk.org Cc: Ling Wei Date: Tue, 16 Mar 2021 15:26:33 +0800 Message-Id: <20210316072633.314510-1-weix.ling@intel.com> X-Mailer: git-send-email 2.25.1 MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Subject: [dts] [PATCH V2] 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, 2 deletions(-) diff --git a/tests/TestSuite_vhost_user_live_migration.py b/tests/TestSuite_vhost_user_live_migration.py index 915fa596..6d524db7 100644 --- a/tests/TestSuite_vhost_user_live_migration.py +++ b/tests/TestSuite_vhost_user_live_migration.py @@ -448,8 +448,6 @@ class TestVhostUserLiveMigration(TestCase): def tear_down(self): self.destroy_vm_env() - # stop send packet 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