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 AD1B7A00BE; Wed, 29 Apr 2020 10:27:36 +0200 (CEST) Received: from [92.243.14.124] (localhost [127.0.0.1]) by dpdk.org (Postfix) with ESMTP id 733F61D967; Wed, 29 Apr 2020 10:27:36 +0200 (CEST) Received: from mga12.intel.com (mga12.intel.com [192.55.52.136]) by dpdk.org (Postfix) with ESMTP id 98E451D953 for ; Wed, 29 Apr 2020 10:27:35 +0200 (CEST) IronPort-SDR: UJGJH5zgvYkTli2C4tzwhD1vXpbEmu8chtH2S6a3i05/y+o/BTNigaG183maZtSCMssMbK/f5E wFzlj80NNQDg== X-Amp-Result: SKIPPED(no attachment in message) X-Amp-File-Uploaded: False Received: from orsmga006.jf.intel.com ([10.7.209.51]) by fmsmga106.fm.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 29 Apr 2020 01:27:34 -0700 IronPort-SDR: U11jvmh/4VUiK+5j+6qd3NN+rJIlvMHz1APqFZwYuLwIPOnWNLsaNu35ERQHRT58+vUCSd7doD NlPEC+0lEZrg== X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.73,330,1583222400"; d="scan'208";a="261365301" Received: from dpdk-yinan-purley.sh.intel.com ([10.67.117.227]) by orsmga006.jf.intel.com with ESMTP; 29 Apr 2020 01:27:33 -0700 From: Yinan To: dts@dpdk.org Cc: Wang Yinan Date: Wed, 29 Apr 2020 01:21:31 +0000 Message-Id: <20200429012131.47458-1-yinan.wang@intel.com> X-Mailer: git-send-email 2.17.1 Subject: [dts] [PATCH v1] tests: fix typo issue in TestSuite_vm2vm_virtio_user.py 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: Wang Yinan Signed-off-by: Wang Yinan --- tests/TestSuite_vm2vm_virtio_user.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/TestSuite_vm2vm_virtio_user.py b/tests/TestSuite_vm2vm_virtio_user.py index a168eb8..d41e034 100644 --- a/tests/TestSuite_vm2vm_virtio_user.py +++ b/tests/TestSuite_vm2vm_virtio_user.py @@ -468,13 +468,13 @@ class TestVM2VMVirtioUser(TestCase): # then virtio send 32 large pkts, the virtio will all received self.logger.info('check pcap file info about virtio') self.get_dump_file_of_virtio_user(path_mode, extern_params, ringsize) - #self.resend_32_large_pkt_from_virtio0() + self.resend_32_large_pkt_from_virtio0() self.check_packet_payload_valid(self.dump_vhost_pcap, small_pkts_num, large_8k_pkts_num, large_2k_pkts_num) # get dump pcap file of vhost self.logger.info('check pcap file info about vhost') self.get_dump_file_of_vhost_user(path_mode, extern_params, ringsize) - #self.resend_32_large_pkt_from_virtio0() + self.resend_32_large_pkt_from_virtio0() self.check_packet_payload_valid(self.dump_vhost_pcap, small_pkts_num, large_8k_pkts_num, large_2k_pkts_num) self.logger.info('diff the pcap file of vhost and virtio') -- 2.17.1