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 9903FA0AC5 for ; Thu, 2 May 2019 15:20:54 +0200 (CEST) Received: from [92.243.14.124] (localhost [127.0.0.1]) by dpdk.org (Postfix) with ESMTP id 56E4C5F17; Thu, 2 May 2019 15:20:54 +0200 (CEST) Received: from mx0b-0016f401.pphosted.com (mx0a-0016f401.pphosted.com [67.231.148.174]) by dpdk.org (Postfix) with ESMTP id C89FB5B38 for ; Thu, 2 May 2019 15:20:52 +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 x42DBIUQ002223 for ; Thu, 2 May 2019 06:20:51 -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=0NuKEPh9aAB8z3n+NXiSqD/fR+CdoJ5mnr9px8pFyKQ=; b=o81BIMbL1qVf6C7t3jJ6hsgvyYufzdKq/40v4Hp+jahhzoLei5JZuzaaHdla6S70qCr7 njuUFb1VzMuljNp7i+CV9ZbQOQO3hJ8W35Yp+9lwHF9gvQ6KQZT57yb9EzoGCQNMd+5l Xvcrbg6dpT48GCj5fH5fHy0rj1VGx6R7jcVMSxybyCzfRp3H5Nn4SjzeCQ0riBea6MDv w0Vmnzvfy61unS72KeINZOBXvmKzk7WeD8ur/btvjVR3Buck1w9IL4CsGBPXr9BfkpDk xWe0OnRvZDMlM/+S8r6rxrC/yjDOOAmgvlUCAUZ93m4CciussYrelHEMls3Buj1x5587 Sw== Received: from sc-exch03.marvell.com ([199.233.58.183]) by mx0a-0016f401.pphosted.com with ESMTP id 2s7ycr0e9a-1 (version=TLSv1.2 cipher=ECDHE-RSA-AES256-SHA384 bits=256 verify=NOT) for ; Thu, 02 May 2019 06:20:51 -0700 Received: from SC-EXCH01.marvell.com (10.93.176.81) by SC-EXCH03.marvell.com (10.93.176.83) with Microsoft SMTP Server (TLS) id 15.0.1367.3; Thu, 2 May 2019 06:20:50 -0700 Received: from maili.marvell.com (10.93.176.43) by SC-EXCH01.marvell.com (10.93.176.81) with Microsoft SMTP Server id 15.0.1367.3 via Frontend Transport; Thu, 2 May 2019 06:20:50 -0700 Received: from phanendra-system.marvell.com (unknown [10.28.11.20]) by maili.marvell.com (Postfix) with ESMTP id 070113F703F; Thu, 2 May 2019 06:20:48 -0700 (PDT) From: To: CC: , , Phanendra Vukkisala Date: Thu, 2 May 2019 18:50:44 +0530 Message-ID: <1556803244-8705-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] Remove importing unused variables/methods 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_hotplug.py | 4 ---- tests/TestSuite_netmap_compat.py | 3 --- tests/TestSuite_rxtx_callbacks.py | 3 --- tests/TestSuite_skeleton.py | 3 --- 4 files changed, 13 deletions(-) diff --git a/tests/TestSuite_hotplug.py b/tests/TestSuite_hotplug.py index 5528a22..a94967a 100644 --- a/tests/TestSuite_hotplug.py +++ b/tests/TestSuite_hotplug.py @@ -35,14 +35,10 @@ DPDK Test suite. Test port hot plug. """ -import string import time import re import utils from test_case import TestCase -from plotting import Plotting -from settings import HEADER_SIZE -from etgen import IxiaPacketGenerator from packet import Packet class TestPortHotPlug(TestCase): diff --git a/tests/TestSuite_netmap_compat.py b/tests/TestSuite_netmap_compat.py index 84136c7..2f8171c 100644 --- a/tests/TestSuite_netmap_compat.py +++ b/tests/TestSuite_netmap_compat.py @@ -40,9 +40,6 @@ import string import time import re from test_case import TestCase -from plotting import Plotting -from settings import HEADER_SIZE -from etgen import IxiaPacketGenerator class TestNetmapCompat(TestCase): diff --git a/tests/TestSuite_rxtx_callbacks.py b/tests/TestSuite_rxtx_callbacks.py index a654480..c48e542 100644 --- a/tests/TestSuite_rxtx_callbacks.py +++ b/tests/TestSuite_rxtx_callbacks.py @@ -38,9 +38,6 @@ import utils import string import time from test_case import TestCase -from plotting import Plotting -from settings import HEADER_SIZE -from etgen import IxiaPacketGenerator class TestRxtxCallbacks(TestCase): diff --git a/tests/TestSuite_skeleton.py b/tests/TestSuite_skeleton.py index b56d955..6958b32 100644 --- a/tests/TestSuite_skeleton.py +++ b/tests/TestSuite_skeleton.py @@ -38,9 +38,6 @@ import utils import string import time from test_case import TestCase -from plotting import Plotting -from settings import HEADER_SIZE -from etgen import IxiaPacketGenerator -- 1.7.9.5