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 05CC0A0352; Fri, 17 Dec 2021 09:43:55 +0100 (CET) Received: from [217.70.189.124] (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id EB1A74013F; Fri, 17 Dec 2021 09:43:54 +0100 (CET) Received: from mga07.intel.com (mga07.intel.com [134.134.136.100]) by mails.dpdk.org (Postfix) with ESMTP id 82C4D40040 for ; Fri, 17 Dec 2021 09:43:53 +0100 (CET) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=intel.com; i=@intel.com; q=dns/txt; s=Intel; t=1639730633; x=1671266633; h=from:to:cc:subject:date:message-id:mime-version: content-transfer-encoding; bh=QuY8DEyXUP/iZrGcXYkvCdWTA1qRyXFanrpsk9nR7HI=; b=er4PV33ckozJpgBOZ+QGgJk7Yq7LDsHyzyWPYH49HYLyIMQIGosaMMXM 6wcI3osTrqfNnHUlOoXd5JkpAnyQB7bQNfo6orNk9n2STziEySEzX2fSo YKtac4s3u5Zv0nxJbwwWGzgg/Y6R2Cgh0ESegNYjMg1pY3nOeEMWL/qpL jUq0wNCbC7WFCwTCwvdg2mIDPrj/64TS7ng8p9uDMgiUiMvibYoEyctkU 36Qkem5H8pbunfZ/AK05zJBqsi/UgS6fgt7hH7wPwmC9K+n/dzhyCv/xw dKgygTjUtbVL10bIWw92PiXp49u5lpbibacrIM8+W7doIZGsHjnmm4yWt Q==; X-IronPort-AV: E=McAfee;i="6200,9189,10200"; a="303089459" X-IronPort-AV: E=Sophos;i="5.88,213,1635231600"; d="scan'208";a="303089459" Received: from orsmga008.jf.intel.com ([10.7.209.65]) by orsmga105.jf.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 17 Dec 2021 00:43:52 -0800 X-IronPort-AV: E=Sophos;i="5.88,213,1635231600"; d="scan'208";a="519658318" Received: from unknown (HELO dpdk.lan) ([10.240.183.77]) by orsmga008-auth.jf.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 17 Dec 2021 00:43:48 -0800 From: Yan Xia To: dts@dpdk.org Cc: Yan Xia Subject: [dts][PATCH V1] test/vf_jumboframe:when driver is ixgbe, dpdk does not need change Date: Fri, 17 Dec 2021 16:46:36 +0000 Message-Id: <20211217164636.22246-1-yanx.xia@intel.com> X-Mailer: git-send-email 2.33.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 when driver is ixgbe,dpdk does not need change Signed-off-by: Yan Xia --- test_plans/vf_jumboframe_test_plan.rst | 4 ---- tests/TestSuite_vf_jumboframe.py | 5 ----- 2 files changed, 9 deletions(-) diff --git a/test_plans/vf_jumboframe_test_plan.rst b/test_plans/vf_jumboframe_test_plan.rst index 6f8f8b6a..2f4cae3d 100644 --- a/test_plans/vf_jumboframe_test_plan.rst +++ b/test_plans/vf_jumboframe_test_plan.rst @@ -107,10 +107,6 @@ Testing the support of Jumbo Frames in Poll Mode Drivers consists in configuring the maximum packet length with a value greater than 1518, and in sending to the test machine packets with the following lengths (CRC included): -when driver is ixgbe, turn on the jumbo_frame switch:: - - sed -i -e 's/.jumbo_frame = .*$/.jumbo_frame = 1,/g' app/test-pmd/testpmd.c - #. packet length = 1518 - 1 #. packet length = 1518 diff --git a/tests/TestSuite_vf_jumboframe.py b/tests/TestSuite_vf_jumboframe.py index 9c5db0ae..c8ae7b43 100644 --- a/tests/TestSuite_vf_jumboframe.py +++ b/tests/TestSuite_vf_jumboframe.py @@ -147,11 +147,6 @@ class TestVfJumboFrame(TestCase): if self.vm_dut is None: raise Exception("Set up VM ENV failed!") - TESTPMD_MAIN = "app/test-pmd/testpmd.c" - if self.kdriver == "ixgbe": - self.vm_dut.send_expect("sed -i -e 's/.jumbo_frame = .*$/.jumbo_frame = 1,/g' %s" % TESTPMD_MAIN, "# ") - self.vm_dut.build_install_dpdk(self.target) - self.vm_testpmd = PmdOutput(self.vm_dut) except Exception as e: -- 2.33.1