* [dts] [PATCH] [PATCH]tests/power: replace eal whitelist option
@ 2021-09-22 10:07 Reshma Pattan
2021-09-22 13:10 ` Pattan, Reshma
0 siblings, 1 reply; 3+ messages in thread
From: Reshma Pattan @ 2021-09-22 10:07 UTC (permalink / raw)
To: dts; +Cc: Reshma Pattan
replace eal whitelist option '-w' with all '-a'
option.
Signed-off-by: Reshma Pattan <reshma.pattan@intel.com>
---
test_plans/power_negative_test_plan.rst | 4 ++--
tests/TestSuite_power_negative.py | 8 ++++----
2 files changed, 6 insertions(+), 6 deletions(-)
diff --git a/test_plans/power_negative_test_plan.rst b/test_plans/power_negative_test_plan.rst
index b1de4d4..7656368 100644
--- a/test_plans/power_negative_test_plan.rst
+++ b/test_plans/power_negative_test_plan.rst
@@ -149,11 +149,11 @@ Test Case4: TRAFFIC Policy Test based on JSON configure file with large integer
Step 1. Generate 1 VF under vfio-pci driver, launch vm_power_mgr sample with PF, for example::
echo 1 > /sys/bus/pci/drivers/vfio-pci/0000\:82\:00.0/max_vfs
- ./examples/vm_power_manager/build/vm_power_mgr -l 1-4 -n 4 --socket-mem=1024,1024 --file-prefix=test1 -w 82:00.0 -- -p 0x01
+ ./examples/vm_power_manager/build/vm_power_mgr -l 1-4 -n 4 --socket-mem=1024,1024 --file-prefix=test1 -a 82:00.0 -- -p 0x01
Step 2. Launch testpmd with VF::
- ./x86_64-native-linuxapp-gcc/app/testpmd -l 5-6 -n 4 --socket-mem=1024,1024 --file-prefix=test2 -w 0000:82:02.0 -- -i
+ ./x86_64-native-linuxapp-gcc/app/testpmd -l 5-6 -n 4 --socket-mem=1024,1024 --file-prefix=test2 -a 0000:82:02.0 -- -i
> set fwd macswap
> start
diff --git a/tests/TestSuite_power_negative.py b/tests/TestSuite_power_negative.py
index f6d4149..9c290ba 100644
--- a/tests/TestSuite_power_negative.py
+++ b/tests/TestSuite_power_negative.py
@@ -487,9 +487,9 @@ class TestPowerNegative(TestCase):
# ========================================================================================
# Step1. Generate 1 VF under igb_uio driver, launch vm_power_mgr sample with PF, for example:
# echo 1 > /sys/bus/pci/drivers/igb_uio/0000\:82\:00.0/max_vfs
- # ./examples/vm_power_manager/build/vm_power_mgr -l 1-4 -n 4 --socket-mem=1024,1024 --file-prefix=test1 -w 82:00.0 -- -p 0x01
+ # ./examples/vm_power_manager/build/vm_power_mgr -l 1-4 -n 4 --socket-mem=1024,1024 --file-prefix=test1 -a 82:00.0 -- -p 0x01
# Step 2. Launch testpmd with VF
- # ./x86_64-native-linuxapp-gcc/app/testpmd -l 5-6 -n 4 --socket-mem=1024,1024 --file-prefix=test2 -w 0000:82:02.0 -- -i
+ # ./x86_64-native-linuxapp-gcc/app/testpmd -l 5-6 -n 4 --socket-mem=1024,1024 --file-prefix=test2 -a 0000:82:02.0 -- -i
# >set fwd macswap
# >start
# Step 3. Prepare traffic policy in JSON format then send it to the power demon sample, put the VF MAC into the mac_list:
@@ -508,7 +508,7 @@ class TestPowerNegative(TestCase):
self.d_con([f'echo 1 > "/sys/bus/pci/drivers/vfio-pci/{self.port_pci}/sriov_numvfs"', '#', 10])
# start vm_power_mgr
- cmd = f'{self.vm_power_mgr} -l 1-4 -n 4 --socket-mem=1024,1024 --file-prefix=test1 -w {self.port_pci} -- -p 0x01'
+ cmd = f'{self.vm_power_mgr} -l 1-4 -n 4 --socket-mem=1024,1024 --file-prefix=test1 -a {self.port_pci} -- -p 0x01'
self.d_a_con([cmd, 'vmpower>', 30])
self.is_mgr_on = True
@@ -516,7 +516,7 @@ class TestPowerNegative(TestCase):
self.logger.info(vm_info)
# Step 2. Launch testpmd with VF
- cmd = f'{self.testpmd} -l 5-6 -n 4 --socket-mem=1024,1024 --file-prefix=test2 -w {self.port_pci} -- -i'
+ cmd = f'{self.testpmd} -l 5-6 -n 4 --socket-mem=1024,1024 --file-prefix=test2 -a {self.port_pci} -- -i'
self.d_con([cmd, 'testpmd>', 30])
self.is_testpmd_on = True
--
1.8.3.1
^ permalink raw reply [flat|nested] 3+ messages in thread
* Re: [dts] [PATCH] [PATCH]tests/power: replace eal whitelist option
2021-09-22 10:07 [dts] [PATCH] [PATCH]tests/power: replace eal whitelist option Reshma Pattan
@ 2021-09-22 13:10 ` Pattan, Reshma
2021-09-27 5:46 ` Tu, Lijuan
0 siblings, 1 reply; 3+ messages in thread
From: Pattan, Reshma @ 2021-09-22 13:10 UTC (permalink / raw)
To: dts
> -----Original Message-----
> From: Pattan, Reshma <reshma.pattan@intel.com>
> Sent: Wednesday, September 22, 2021 11:08 AM
> To: dts@dpdk.org
> Cc: Pattan, Reshma <reshma.pattan@intel.com>
> Subject: [PATCH] [dts][PATCH]tests/power: replace eal whitelist option
>
> replace eal whitelist option '-w' with all '-a'
> option.
>
> Signed-off-by: Reshma Pattan <reshma.pattan@intel.com>
Tested-by: Reshma Pattan <reshma.pattan@intel.com>
^ permalink raw reply [flat|nested] 3+ messages in thread
* Re: [dts] [PATCH] [PATCH]tests/power: replace eal whitelist option
2021-09-22 13:10 ` Pattan, Reshma
@ 2021-09-27 5:46 ` Tu, Lijuan
0 siblings, 0 replies; 3+ messages in thread
From: Tu, Lijuan @ 2021-09-27 5:46 UTC (permalink / raw)
To: Pattan, Reshma, dts
> -----Original Message-----
> From: dts <dts-bounces@dpdk.org> On Behalf Of Pattan, Reshma
> Sent: 2021年9月22日 21:10
> To: dts@dpdk.org
> Subject: Re: [dts] [PATCH] [PATCH]tests/power: replace eal whitelist option
>
>
>
> > -----Original Message-----
> > From: Pattan, Reshma <reshma.pattan@intel.com>
> > Sent: Wednesday, September 22, 2021 11:08 AM
> > To: dts@dpdk.org
> > Cc: Pattan, Reshma <reshma.pattan@intel.com>
> > Subject: [PATCH] [dts][PATCH]tests/power: replace eal whitelist option
> >
> > replace eal whitelist option '-w' with all '-a'
> > option.
> >
> > Signed-off-by: Reshma Pattan <reshma.pattan@intel.com>
> Tested-by: Reshma Pattan <reshma.pattan@intel.com>
Applied, thanks
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2021-09-27 5:46 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-09-22 10:07 [dts] [PATCH] [PATCH]tests/power: replace eal whitelist option Reshma Pattan
2021-09-22 13:10 ` Pattan, Reshma
2021-09-27 5:46 ` Tu, Lijuan
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).