* [dts][V2 0/2] Remove old DPDK flags from power tests
@ 2022-03-28 16:13 Tadhg Kearney
2022-03-28 16:13 ` [dts][V2 1/2] test_plans/*: Remove old DPDK RTE " Tadhg Kearney
2022-03-28 16:13 ` [dts][V2 2/2] tests/*: Remove old DPDK " Tadhg Kearney
0 siblings, 2 replies; 3+ messages in thread
From: Tadhg Kearney @ 2022-03-28 16:13 UTC (permalink / raw)
To: dts; +Cc: reshma.pattan, Tadhg Kearney
* Remove use of old DPDK flags that are no longer used.
* Remove makefile support.
* Remove use of old DPDK flags in test plans.
Tadhg Kearney (2):
tests/*: Remove old DPDK RTE flags from power tests
test_plans: Remove old DPDK flags from power test
test_plans/power_branch_ratio_test_plan.rst | 5 ++--
test_plans/power_telemetry_test_plan.rst | 5 ----
tests/TestSuite_power_branch_ratio.py | 30 +--------------------
tests/TestSuite_power_telemetry.py | 10 +------
4 files changed, 4 insertions(+), 46 deletions(-)
--
2.25.1
^ permalink raw reply [flat|nested] 3+ messages in thread
* [dts][V2 1/2] test_plans/*: Remove old DPDK RTE flags from power tests
2022-03-28 16:13 [dts][V2 0/2] Remove old DPDK flags from power tests Tadhg Kearney
@ 2022-03-28 16:13 ` Tadhg Kearney
2022-03-28 16:13 ` [dts][V2 2/2] tests/*: Remove old DPDK " Tadhg Kearney
1 sibling, 0 replies; 3+ messages in thread
From: Tadhg Kearney @ 2022-03-28 16:13 UTC (permalink / raw)
To: dts; +Cc: reshma.pattan, Tadhg Kearney
Remove refernce to flags that don't exist anymore
Signed-off-by: Tadhg Kearney <tadhg.kearney@intel.com>
---
test_plans/power_branch_ratio_test_plan.rst | 5 ++---
test_plans/power_telemetry_test_plan.rst | 5 -----
2 files changed, 2 insertions(+), 8 deletions(-)
diff --git a/test_plans/power_branch_ratio_test_plan.rst b/test_plans/power_branch_ratio_test_plan.rst
index 4bbf95af..ba943693 100644
--- a/test_plans/power_branch_ratio_test_plan.rst
+++ b/test_plans/power_branch_ratio_test_plan.rst
@@ -47,9 +47,8 @@ Prepare work
intel_pstate=enable
-5. Set CONFIG_RTE_LIBRTE_POWER_DEBUG=y CONFIG_RTE_LIBRTE_POWER=y in /config/common_base file.
-6. modprobe msr module to let the application can get the CPU HW info.
-7. Let user space can control the CPU frequency::
+5. modprobe msr module to let the application can get the CPU HW info.
+6. Let user space can control the CPU frequency::
cpupower frequency-set -g userspace
diff --git a/test_plans/power_telemetry_test_plan.rst b/test_plans/power_telemetry_test_plan.rst
index 0afb0f77..8804129c 100644
--- a/test_plans/power_telemetry_test_plan.rst
+++ b/test_plans/power_telemetry_test_plan.rst
@@ -53,11 +53,6 @@ Preparation Work for Settings
cpupower frequency-set -g userspace
-Compile DPDK with telemetry enabled, enable telemetry lib in configuration file::
-
- -CONFIG_RTE_LIBRTE_TELEMETRY=n
- +CONFIG_RTE_LIBRTE_TELEMETRY=y
-
Test Case 1 : Check all 3 type of power related info reported by Telemetry System
=================================================================================
--
2.25.1
^ permalink raw reply [flat|nested] 3+ messages in thread
* [dts][V2 2/2] tests/*: Remove old DPDK flags from power tests
2022-03-28 16:13 [dts][V2 0/2] Remove old DPDK flags from power tests Tadhg Kearney
2022-03-28 16:13 ` [dts][V2 1/2] test_plans/*: Remove old DPDK RTE " Tadhg Kearney
@ 2022-03-28 16:13 ` Tadhg Kearney
1 sibling, 0 replies; 3+ messages in thread
From: Tadhg Kearney @ 2022-03-28 16:13 UTC (permalink / raw)
To: dts; +Cc: reshma.pattan, Tadhg Kearney
* CONFIG_RTE_LIBRTE_I40E_PMD, CONFIG_RTE_LIBRTE_POWER + _CONFIG option do not exist anymore
* Telemetry is built by default + _LIBRTE_ option also does not exist anymore
Signed-off-by: Tadhg Kearney <tadhg.kearney@intel.com>
---
tests/TestSuite_power_branch_ratio.py | 30 +--------------------------
tests/TestSuite_power_telemetry.py | 10 +--------
2 files changed, 2 insertions(+), 38 deletions(-)
diff --git a/tests/TestSuite_power_branch_ratio.py b/tests/TestSuite_power_branch_ratio.py
index deb271e0..a6cd0fb7 100644
--- a/tests/TestSuite_power_branch_ratio.py
+++ b/tests/TestSuite_power_branch_ratio.py
@@ -45,7 +45,7 @@ from framework.exception import VerifyFailure
from framework.packet import Packet
from framework.pktgen import TRANSMIT_CONT
from framework.qemu_libvirt import LibvirtKvm
-from framework.settings import HEADER_SIZE, HOST_BUILD_TYPE_SETTING, load_global_setting
+from framework.settings import HEADER_SIZE
from framework.test_case import TestCase
from framework.utils import create_mask as dts_create_mask
@@ -227,24 +227,7 @@ class TestPowerBranchRatio(TestCase):
return result
- @property
- def compile_switch(self):
- sw_table = [
- "CONFIG_RTE_LIBRTE_POWER",
- "CONFIG_RTE_LIBRTE_POWER_DEBUG",
- ]
- return sw_table
-
def preset_compilation(self):
- if "meson" == load_global_setting(HOST_BUILD_TYPE_SETTING):
- compile_SWs = self.compile_switch + ["CONFIG_RTE_LIBRTE_I40E_PMD"]
- self.dut.set_build_options(dict([(sw[7:], "y") for sw in compile_SWs]))
- else:
- for sw in self.compile_switch:
- cmd = (
- "sed -i -e " "'s/{0}=n$/{0}=y/' " "{1}/config/common_base"
- ).format(sw, self.target_dir)
- self.d_a_con(cmd)
# re-compile dpdk source code
self.dut.build_install_dpdk(self.target)
@@ -258,17 +241,6 @@ class TestPowerBranchRatio(TestCase):
self.restore_port_drv()
except Exception as e:
self.logger.error(traceback.format_exc())
- # restore compilation
- if "meson" == load_global_setting(HOST_BUILD_TYPE_SETTING):
- self.dut.set_build_options(
- dict([(sw[7:], "n") for sw in self.compile_switch])
- )
- else:
- for sw in self.compile_switch:
- cmd = (
- "sed -i -e " "'s/{0}=y$/{0}=n/' " "{1}/config/common_base"
- ).format(sw, self.target_dir)
- self.d_a_con(cmd)
# re-compile dpdk source code
self.dut.build_install_dpdk(self.target)
diff --git a/tests/TestSuite_power_telemetry.py b/tests/TestSuite_power_telemetry.py
index afb55262..1bcb4d67 100644
--- a/tests/TestSuite_power_telemetry.py
+++ b/tests/TestSuite_power_telemetry.py
@@ -45,7 +45,7 @@ from pprint import pformat
from framework.exception import VerifyFailure
from framework.packet import Packet
from framework.pktgen import TRANSMIT_CONT
-from framework.settings import HEADER_SIZE, HOST_BUILD_TYPE_SETTING, load_global_setting
+from framework.settings import HEADER_SIZE
from framework.test_case import TestCase
from framework.utils import create_mask as dts_create_mask
@@ -128,14 +128,6 @@ class TestPowerTelemetry(TestCase):
def preset_compilation(self):
if self.dut.skip_setup:
return
- SW = "CONFIG_RTE_LIBRTE_TELEMETRY"
- if "meson" == load_global_setting(HOST_BUILD_TYPE_SETTING):
- self.dut.set_build_options({SW[7:]: "y"})
- else:
- cmd = "sed -i -e 's/{0}=n$/{0}=y/' {1}/config/common_base".format(
- SW, self.target_dir
- )
- self.d_a_con(cmd)
# re-compile dpdk source code
self.dut.build_install_dpdk(self.target)
--
2.25.1
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2022-03-28 16:14 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2022-03-28 16:13 [dts][V2 0/2] Remove old DPDK flags from power tests Tadhg Kearney
2022-03-28 16:13 ` [dts][V2 1/2] test_plans/*: Remove old DPDK RTE " Tadhg Kearney
2022-03-28 16:13 ` [dts][V2 2/2] tests/*: Remove old DPDK " Tadhg Kearney
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).