From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from foss.arm.com (foss.arm.com [217.140.101.70]) by dpdk.org (Postfix) with ESMTP id 579E55F1C for ; Fri, 30 Mar 2018 12:41:50 +0200 (CEST) Received: from usa-sjc-imap-foss1.foss.arm.com (unknown [10.72.51.249]) by usa-sjc-mx-foss1.foss.arm.com (Postfix) with ESMTP id C7CFB1596; Fri, 30 Mar 2018 03:41:49 -0700 (PDT) Received: from phil-VirtualBox.shanghai.arm.com (unknown [10.169.107.220]) by usa-sjc-imap-foss1.foss.arm.com (Postfix) with ESMTPA id 1E8F03F487; Fri, 30 Mar 2018 03:41:48 -0700 (PDT) From: Phil Yang To: dts@dpdk.org Cc: nd@arm.com, yong.liu@intel.com Date: Fri, 30 Mar 2018 18:41:07 +0800 Message-Id: <1522406469-9251-15-git-send-email-phil.yang@arm.com> X-Mailer: git-send-email 2.7.4 In-Reply-To: <1522406469-9251-1-git-send-email-phil.yang@arm.com> References: <1521792246-4950-1-git-send-email-phil.yang@arm.com> <1522406469-9251-1-git-send-email-phil.yang@arm.com> Subject: [dts] [PATCH v2 15/17] tests/vlan_ethertype_config: Replace sniff_packets to tester.tcpdump_sniff_packets 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: , X-List-Received-Date: Fri, 30 Mar 2018 10:41:50 -0000 Make sniff_packet running on the tester. Create a ssh connection to the tester then call tcpdump. Signed-off-by: Phil Yang --- tests/TestSuite_vlan_ethertype_config.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/tests/TestSuite_vlan_ethertype_config.py b/tests/TestSuite_vlan_ethertype_config.py index 1fb30fb..413ec89 100644 --- a/tests/TestSuite_vlan_ethertype_config.py +++ b/tests/TestSuite_vlan_ethertype_config.py @@ -43,7 +43,6 @@ import utils from test_case import TestCase from pmd_output import PmdOutput -from packet import Packet, sniff_packets, load_sniff_packets from scapy.utils import struct, socket, wrpcap, rdpcap from scapy.layers.inet import Ether, IP, TCP, UDP, ICMP from scapy.layers.l2 import Dot1Q, ARP, GRE @@ -125,7 +124,7 @@ class TestVlanEthertypeConfig(TestCase): # off self.dmac = self.dut.get_mac_address(dutRxPortId) - self.inst = sniff_packets(self.rxItf) + self.inst = self.tester.tcpdump_sniff_packets(self.rxItf) pkt = [] if outer_vid < 0 or outer_tpid <= 0: pkt = [ -- 2.7.4