diff options
| author | Luca Vizzarro <[email protected]> | 2024-06-19 15:03:00 +0100 |
|---|---|---|
| committer | Thomas Monjalon <[email protected]> | 2024-06-20 05:30:40 +0200 |
| commit | 967fc62b0a4356e353dfec11af45513fd75f7567 (patch) | |
| tree | 8881b23e07d6274465a8cf45b5eb80bbab6f298b /dts/framework/remote_session/testpmd_shell.py | |
| parent | fd8cd8ee191e4f295706b2d412abbdb665670153 (diff) | |
dts: refactor EAL parameters class
Move EalParams to its own module to avoid circular dependencies.
Also the majority of the attributes are now optional.
Signed-off-by: Luca Vizzarro <[email protected]>
Reviewed-by: Paul Szczepanek <[email protected]>
Reviewed-by: Juraj Linkeš <[email protected]>
Reviewed-by: Jeremy Spewock <[email protected]>
Reviewed-by: Nicholas Pratte <[email protected]>
Diffstat (limited to 'dts/framework/remote_session/testpmd_shell.py')
| -rw-r--r-- | dts/framework/remote_session/testpmd_shell.py | 2 |
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 2f86de1903..e71cda406f 100644 --- a/dts/framework/remote_session/testpmd_shell.py +++ b/dts/framework/remote_session/testpmd_shell.py @@ -26,9 +26,9 @@ from typing import Callable, ClassVar from typing_extensions import Self from framework.exception import InteractiveCommandExecutionError +from framework.params.eal import EalParams from framework.parser import ParserFn, TextParser from framework.settings import SETTINGS -from framework.testbed_model.sut_node import EalParams from framework.utils import StrEnum from .interactive_shell import InteractiveShell |
