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 CA1B2A04FD; Fri, 25 Mar 2022 09:39:28 +0100 (CET) Received: from [217.70.189.124] (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id A062540687; Fri, 25 Mar 2022 09:39:28 +0100 (CET) Received: from mga17.intel.com (mga17.intel.com [192.55.52.151]) by mails.dpdk.org (Postfix) with ESMTP id 1FE1D40140 for ; Fri, 25 Mar 2022 09:39:26 +0100 (CET) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=intel.com; i=@intel.com; q=dns/txt; s=Intel; t=1648197567; x=1679733567; h=from:to:cc:subject:date:message-id:mime-version: content-transfer-encoding; bh=pRW3SBuojHusthao1lLbc2JufiuAd8l3ulammb0rT/E=; b=clDND1y6R+iwAN8NecVpPuYtbbgbQLfvieLaiHaXJjZ5LHP5Jo+6H/99 HZXdxNIK0S4fcUwgt0PxI0RPeVx16lriWCcM8c9yplZ6rQFUOMA2Nytcf RDEPtyZD75XzFRidxAZW5OKyqL5pNzxZshBkVc89iqA6Djj35shXtV0K4 XHb5VIOxJnzSorJNAtacPcPI8eK27O3hQR1pTgH7kf/gjCpK+43578wCl o3XTf25sfNQdLsRCLT8Et4janAHMSuxm2gPjVGYaiN0C6st+IR5htWfY8 qKj3kpffchx8t/7MDjGie93g2fPWcG0b1K9N04xQiOIw5xINITdRz5RiK w==; X-IronPort-AV: E=McAfee;i="6200,9189,10296"; a="239191495" X-IronPort-AV: E=Sophos;i="5.90,209,1643702400"; d="scan'208";a="239191495" Received: from fmsmga005.fm.intel.com ([10.253.24.32]) by fmsmga107.fm.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 25 Mar 2022 01:39:26 -0700 X-IronPort-AV: E=Sophos;i="5.90,209,1643702400"; d="scan'208";a="825973005" 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; 25 Mar 2022 01:39:23 -0700 From: Jun Dong To: dts@dpdk.org Cc: lijuan.tu@intel.com, qingx.sun@intel.com, junx.dong@intel.com Subject: [dts] [V1] tests/telemetry: Remove unnecessary resource code changing and rebuild Date: Fri, 25 Mar 2022 16:39:15 +0800 Message-Id: <20220325083915.714-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_telemetry.py | 10 +--------- 1 file changed, 1 insertion(+), 9 deletions(-) diff --git a/tests/TestSuite_telemetry.py b/tests/TestSuite_telemetry.py index 2e0e3c5b..b25dcbd3 100644 --- a/tests/TestSuite_telemetry.py +++ b/tests/TestSuite_telemetry.py @@ -43,9 +43,6 @@ from framework.test_case import TestCase class TestTelemetry(TestCase): - def set_compiler_switch(self): - self.dut.set_build_options({"RTE_LIBRTE_TELEMETRY": "y"}) - def create_query_script(self): """ usertools/dpdk-telemetry-client.py is not user friendly(till 19.05). @@ -214,10 +211,6 @@ class TestTelemetry(TestCase): return outputs def init_test_binary_files(self): - # set_compiler_switch - if not self.dut.skip_setup: - self.set_compiler_switch() - self.dut.build_install_dpdk(self.target) # initialize testpmd self.testpmd_status = "close" self.testpmd = PmdOutput(self.dut) @@ -605,8 +598,7 @@ class TestTelemetry(TestCase): """ Run after each test suite. """ - self.dut.set_build_options({"RTE_LIBRTE_TELEMETRY": "n"}) - self.dut.build_install_dpdk(self.target) + pass def test_basic_connection(self): """ -- 2.33.1.windows.1