* [dts] [PATCH V1] tests/malicious_driver_event_indication:code for optimizing the start mode of VF
@ 2021-03-22 7:13 Zhou Jun
2021-03-22 7:24 ` Zhou, JunX W
2021-03-23 9:56 ` Zhao, HaiyangX
0 siblings, 2 replies; 3+ messages in thread
From: Zhou Jun @ 2021-03-22 7:13 UTC (permalink / raw)
To: dts; +Cc: Zhou Jun
the original way:copy testpmd to another file and start VF
now:start VF with another profix file on the testpmd start PF
Signed-off-by: Zhou Jun <junx.w.zhou@intel.com>
---
.../TestSuite_malicious_driver_event_indication.py | 41 ++++++++--------------
1 file changed, 14 insertions(+), 27 deletions(-)
diff --git a/tests/TestSuite_malicious_driver_event_indication.py b/tests/TestSuite_malicious_driver_event_indication.py
index 44859ab..e98bc97 100644
--- a/tests/TestSuite_malicious_driver_event_indication.py
+++ b/tests/TestSuite_malicious_driver_event_indication.py
@@ -38,6 +38,7 @@ import re
import time
import traceback
from contextlib import contextmanager
+from pmd_output import PmdOutput
from exception import VerifyFailure
@@ -159,28 +160,12 @@ class TestSuiteMaliciousDrvEventIndication(TestCase):
def init_vf_testpmd(self):
self.vf_pmd_session_name = 'vf_testpmd'
self.vf_pmd_session = self.dut.create_session(self.vf_pmd_session_name)
- self.vf_testpmd = "{}/{}/app/testpmd_vf".format(
- self.target_dir, self.dut.target)
- cmd = 'rm -f {vf_pmd};cp -f {pf_pmd} {vf_pmd}'.format(
- **{'pf_pmd': self.pf_testpmd, 'vf_pmd': self.vf_testpmd})
- self.d_a_con(cmd)
+ self.vf_pmdout = PmdOutput(self.dut, self.vf_pmd_session)
def start_vf_testpmd(self):
- core_mask = utils.create_mask(self.vf_pmd_cores)
- cmd = (
- "{bin} "
- "-v "
- "-c {core_mask} "
- "-n {mem_channel} "
- "--file-prefix={prefix} "
- "{whitelist} "
- "-- -i ").format(**{
- 'bin': self.vf_testpmd,
- 'core_mask': core_mask,
- 'mem_channel': self.dut.get_memory_channels(),
- 'whitelist': self.vf_pmd_whitelist,
- 'prefix': 'vf_pmd', })
- self.vf_pmd_con([cmd, "testpmd> ", 120])
+ self.vf_pmdout.start_testpmd(self.vf_pmd_cores,
+ eal_param="-v {}".format(self.vf_pmd_whitelist),
+ prefix='vf_pmd')
self.is_vf_pmd_on = True
cmds = [
'set fwd txonly',
@@ -278,11 +263,6 @@ class TestSuiteMaliciousDrvEventIndication(TestCase):
def preset_test_environment(self):
self.preset_dpdk_compilation()
- self.init_pf_testpmd()
- self.init_vf_testpmd()
- self.vf_create()
- # get socket and cores
- self.preset_pmd_res()
def destroy_resource(self):
with self.restore_dpdk_compilation():
@@ -297,7 +277,6 @@ class TestSuiteMaliciousDrvEventIndication(TestCase):
"""
Run at the start of each test suite.
"""
- self.init_params()
self.dut_ports = self.dut.get_ports(self.nic)
self.verify(len(self.dut_ports) >= 1, "Not enough ports")
self.verify_supported_nic()
@@ -314,13 +293,21 @@ class TestSuiteMaliciousDrvEventIndication(TestCase):
"""
Run before each test case.
"""
- pass
+ self.init_params()
+ self.init_pf_testpmd()
+ self.init_vf_testpmd()
+ self.vf_create()
+ self.preset_pmd_res()
def tear_down(self):
"""
Run after each test case.
"""
self.dut.kill_all()
+ self.vf_destroy()
+ if self.vf_pmd_session:
+ self.dut.close_session(self.vf_pmd_session)
+ self.vf_pmd_session = None
def test_malicious_driver_event_detected(self):
"""
--
1.8.3.1
^ permalink raw reply [flat|nested] 3+ messages in thread
* Re: [dts] [PATCH V1] tests/malicious_driver_event_indication:code for optimizing the start mode of VF
2021-03-22 7:13 [dts] [PATCH V1] tests/malicious_driver_event_indication:code for optimizing the start mode of VF Zhou Jun
@ 2021-03-22 7:24 ` Zhou, JunX W
2021-03-23 9:56 ` Zhao, HaiyangX
1 sibling, 0 replies; 3+ messages in thread
From: Zhou, JunX W @ 2021-03-22 7:24 UTC (permalink / raw)
To: dts
>-----Original Message-----
>From: Zhou, JunX W
>Sent: Monday, March 22, 2021 3:13 PM
>To: dts@dpdk.org
>Cc: Zhou, JunX W <junx.w.zhou@intel.com>
>Subject: [dts][PATCH V1] tests/malicious_driver_event_indication:code for optimizing the start mode of VF
>
>the original way:copy testpmd to another file and start VF now:start VF with another profix file on the testpmd start PF
>
>Signed-off-by: Zhou Jun <junx.w.zhou@intel.com>
Tested-by: Zhou, Jun <junx.w.zhou@intel.com>
^ permalink raw reply [flat|nested] 3+ messages in thread
* Re: [dts] [PATCH V1] tests/malicious_driver_event_indication:code for optimizing the start mode of VF
2021-03-22 7:13 [dts] [PATCH V1] tests/malicious_driver_event_indication:code for optimizing the start mode of VF Zhou Jun
2021-03-22 7:24 ` Zhou, JunX W
@ 2021-03-23 9:56 ` Zhao, HaiyangX
1 sibling, 0 replies; 3+ messages in thread
From: Zhao, HaiyangX @ 2021-03-23 9:56 UTC (permalink / raw)
To: Zhou, JunX W, dts; +Cc: Zhou, JunX W
> -----Original Message-----
> From: dts <dts-bounces@dpdk.org> On Behalf Of Zhou Jun
> Sent: Monday, March 22, 2021 15:13
> To: dts@dpdk.org
> Cc: Zhou, JunX W <junx.w.zhou@intel.com>
> Subject: [dts] [PATCH V1] tests/malicious_driver_event_indication:code for
> optimizing the start mode of VF
...
> - 'whitelist': self.vf_pmd_whitelist,
> - 'prefix': 'vf_pmd', })
> - self.vf_pmd_con([cmd, "testpmd> ", 120])
> + self.vf_pmdout.start_testpmd(self.vf_pmd_cores,
> + eal_param="-v {}".format(self.vf_pmd_whitelist),
> + prefix='vf_pmd')
Hi, Jun,
Please replace the whitelist with allowlist, thanks.
Best Regards,
Zhao Haiyang
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2021-03-23 9:56 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-03-22 7:13 [dts] [PATCH V1] tests/malicious_driver_event_indication:code for optimizing the start mode of VF Zhou Jun
2021-03-22 7:24 ` Zhou, JunX W
2021-03-23 9:56 ` Zhao, HaiyangX
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).