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 31D45A0032; Wed, 16 Mar 2022 08:14:05 +0100 (CET) Received: from [217.70.189.124] (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id 26AB0410EC; Wed, 16 Mar 2022 08:14:05 +0100 (CET) Received: from mga03.intel.com (mga03.intel.com [134.134.136.65]) by mails.dpdk.org (Postfix) with ESMTP id 8833F40395 for ; Wed, 16 Mar 2022 08:14:03 +0100 (CET) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=intel.com; i=@intel.com; q=dns/txt; s=Intel; t=1647414843; x=1678950843; h=from:to:cc:subject:date:message-id:mime-version: content-transfer-encoding; bh=fbsWSBJsh2bZy8x0EssEz0Ka0wMkFAuJzF5BoamtN7Y=; b=LGWV+NVGlbf4PQEhGCCPo/dTSuIzigdR0a+wEMp/CohR9kz4fnir+4e9 SEISx6ChLlk6FLIDqPk/GsavFqVsjG34YVbZX6y3+k78lTrA+yxIlIYQM OIRhqa7N8juu411v0tCILjrtbnIO4rD0LeFiYC2ocWTyV7xZr6zZyvX1Q s2wyEezp+a3gGxk7udVyPwNlWdiQRTrvdf2WIt7My6PacsnpZfr3aF8nP IiIYkUlbrIXFufXm48EhYN8YRv0CJqA3FSAlUcmbsgbTnmnwy15+AVup1 faC3mzGC3OPr1R0Ae9J+CFFFWXaZ53GjK0iHccoRa+R3reZu3zFxXEQcY w==; X-IronPort-AV: E=McAfee;i="6200,9189,10286"; a="256463117" X-IronPort-AV: E=Sophos;i="5.90,186,1643702400"; d="scan'208";a="256463117" Received: from fmsmga005.fm.intel.com ([10.253.24.32]) by orsmga103.jf.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 16 Mar 2022 00:14:02 -0700 X-IronPort-AV: E=Sophos;i="5.90,186,1643702400"; d="scan'208";a="820437282" Received: from shwdenpg197.ccr.corp.intel.com ([10.253.109.70]) by fmsmga005-auth.fm.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 16 Mar 2022 00:14:00 -0700 From: Jun Dong To: dts@dpdk.org Cc: lijuan.tu@intel.com, qingx.sun@intel.com, junx.dong@intel.com Subject: [V1] tests/pmdpcap: Move makefile build that changed source code Date: Wed, 16 Mar 2022 15:13:55 +0800 Message-Id: <20220316071355.1175-1-junx.dong@intel.com> X-Mailer: git-send-email 2.33.1.windows.1 MIME-Version: 1.0 Content-Transfer-Encoding: 8bit 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 Signed-off-by: Jun Dong --- tests/TestSuite_pmdpcap.py | 27 --------------------------- 1 file changed, 27 deletions(-) diff --git a/tests/TestSuite_pmdpcap.py b/tests/TestSuite_pmdpcap.py index 9ffe1d76..7024915c 100644 --- a/tests/TestSuite_pmdpcap.py +++ b/tests/TestSuite_pmdpcap.py @@ -54,15 +54,6 @@ class TestPmdPcap(TestCase): self.memory_channel = self.dut.get_memory_channels() - # Enable PCAP features and rebuild the package - self.pcap_config = self.get_pcap_compile_config() - self.dut.send_expect( - "sed -i 's/CONFIG_RTE_LIBRTE_PMD_PCAP=n$/CONFIG_RTE_LIBRTE_PMD_PCAP=y/' config/%s" - % self.pcap_config, - "# ", - ) - self.dut.build_install_dpdk(self.target) - # make sure there is no interface to bind # because if there is any interface bonded to igb_uio, # it will result in packet transmitting failed @@ -72,24 +63,6 @@ class TestPmdPcap(TestCase): self.dut.send_expect("kldload contigmem", "#", 20) self.path = self.dut.apps_name["test-pmd"] - def get_pcap_compile_config(self): - config_head = "common_" - os_type = self.dut.get_os_type() - if os_type == "linux": - config_tail = os_type + "app" - elif os_type == "freebsd": - config_tail = "bsdapp" - else: - raise Exception( - "Unknow os type, please check to make sure pcap can work in OS [ %s ]" - % os_type - ) - out = self.dut.send_command("cat config/%s" % (config_head + config_tail)) - if "CONFIG_RTE_LIBRTE_PMD_PCAP" in out: - return config_head + config_tail - else: - return config_head + "base" - def create_pcap_file(self, filename, number_of_packets): flow = [] for pkt_id in range(number_of_packets): -- 2.33.1.windows.1