From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from dpdk.org (dpdk.org [92.243.14.124]) by dpdk.space (Postfix) with ESMTP id DB00DA0AC5 for ; Thu, 2 May 2019 15:24:32 +0200 (CEST) Received: from [92.243.14.124] (localhost [127.0.0.1]) by dpdk.org (Postfix) with ESMTP id 9EAC55F19; Thu, 2 May 2019 15:24:32 +0200 (CEST) Received: from mx0b-0016f401.pphosted.com (mx0a-0016f401.pphosted.com [67.231.148.174]) by dpdk.org (Postfix) with ESMTP id 1B8585F17 for ; Thu, 2 May 2019 15:24:30 +0200 (CEST) Received: from pps.filterd (m0045849.ppops.net [127.0.0.1]) by mx0a-0016f401.pphosted.com (8.16.0.27/8.16.0.27) with SMTP id x42DLj5p011468 for ; Thu, 2 May 2019 06:24:30 -0700 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=marvell.com; h=from : to : cc : subject : date : message-id : mime-version : content-type; s=pfpt0818; bh=gDP/Rxe6tr/9x1hPROz63iDmzMZvRlV2hRFY63WWwXM=; b=uEw/KCYwy8aik30fS5pkBpSBkPmr8f+TEiB5LUUEpitlMksSGl3zy3MvobcUMNnen+Ch 6HZMoNReU98W3a5a/oXKWUHmZAMJoxVJl09xtmz6b39LINU3xXVSO2eKprvxGXK548Us I7bo0LZPmZRN8J6WczNwi+uw2Sv2TWNDb+OyJZN6Il8EskM43tlf8gJLB8IWkaX0wP5W jnlvgM2ltcVHvUQmfT0sSNxQCK6UQ/lbc8kfdUe6Au/7NgNfnORSiK5lGMhtAQQdA3W6 x6AFrdNAr2e9cHZ82OyAS/GB5ow2vQ2mYaPMF1Y/vYpq3SGoQuEINBRV3TZ0gFEjZxPQ Sg== Received: from sc-exch01.marvell.com ([199.233.58.181]) by mx0a-0016f401.pphosted.com with ESMTP id 2s7ycr0f7s-1 (version=TLSv1.2 cipher=ECDHE-RSA-AES256-SHA384 bits=256 verify=NOT) for ; Thu, 02 May 2019 06:24:30 -0700 Received: from SC-EXCH03.marvell.com (10.93.176.83) by SC-EXCH01.marvell.com (10.93.176.81) with Microsoft SMTP Server (TLS) id 15.0.1367.3; Thu, 2 May 2019 06:24:29 -0700 Received: from maili.marvell.com (10.93.176.43) by SC-EXCH03.marvell.com (10.93.176.83) with Microsoft SMTP Server id 15.0.1367.3 via Frontend Transport; Thu, 2 May 2019 06:24:29 -0700 Received: from phanendra-system.marvell.com (unknown [10.28.11.20]) by maili.marvell.com (Postfix) with ESMTP id 40DDB3F703F; Thu, 2 May 2019 06:24:28 -0700 (PDT) From: To: CC: , , Phanendra Vukkisala Date: Thu, 2 May 2019 18:54:14 +0530 Message-ID: <1556803454-8756-1-git-send-email-pvukkisala@marvell.com> X-Mailer: git-send-email 1.7.9.5 MIME-Version: 1.0 Content-Type: text/plain X-Proofpoint-Virus-Version: vendor=fsecure engine=2.50.10434:, , definitions=2019-05-02_07:, , signatures=0 Subject: [dts] [PATCH] pmdpcap: Import only required methods instead of all 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: Phanendra Vukkisala Signed-off-by: Phanendra Vukkisala --- tests/TestSuite_pmdpcap.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/tests/TestSuite_pmdpcap.py b/tests/TestSuite_pmdpcap.py index d9d838c..8f20693 100644 --- a/tests/TestSuite_pmdpcap.py +++ b/tests/TestSuite_pmdpcap.py @@ -34,7 +34,8 @@ from test_case import TestCase from time import sleep -from scapy.all import * +from scapy.layers.inet import Ether, IP +from scapy.utils import wrpcap import utils -- 1.7.9.5