summaryrefslogtreecommitdiff
path: root/dts/framework/remote_session/testpmd_shell.py
diff options
context:
space:
mode:
authorJeremy Spewock <[email protected]>2024-03-11 11:44:00 -0400
committerThomas Monjalon <[email protected]>2024-03-15 18:01:54 +0100
commite5a9d6893d1161e4764f1c4b3d3eb6a6ecb27f17 (patch)
tree7bcaa473594ba2150c6e03406e277c259675d9be /dts/framework/remote_session/testpmd_shell.py
parent369d34b83b4b53975c9e09c54cb5a257273ce610 (diff)
dts: extend application parameters
Changed the factory method for creating interactive apps in the SUT Node so that EAL parameters would only be passed into DPDK apps since non-DPDK apps wouldn't be able to process them. Also modified interactive apps to allow for the ability to pass parameters into the app on startup so that the applications can be started with certain configuration steps passed on the command line. Signed-off-by: Jeremy Spewock <[email protected]> Reviewed-by: Juraj Linkeš <[email protected]> Tested-by: Patrick Robb <[email protected]>
Diffstat (limited to 'dts/framework/remote_session/testpmd_shell.py')
-rw-r--r--dts/framework/remote_session/testpmd_shell.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/dts/framework/remote_session/testpmd_shell.py b/dts/framework/remote_session/testpmd_shell.py
index 3a66907394..cb2ab6bd00 100644
--- a/dts/framework/remote_session/testpmd_shell.py
+++ b/dts/framework/remote_session/testpmd_shell.py
@@ -118,7 +118,7 @@ class TestPmdShell(InteractiveShell):
Also find the number of pci addresses which were allowed on the command line when the app
was started.
"""
- self._app_args += " -- -i --mask-event intr_lsc"
+ self._app_args += " -i --mask-event intr_lsc"
self.number_of_ports = self._app_args.count("-a ")
super()._start_application(get_privileged_command)