Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

DPDK: Add 32bit test #3489

Open
wants to merge 6 commits into
base: main
Choose a base branch
from
Open
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Dpdk: fix missing line from merge
  • Loading branch information
mcgov committed Jan 29, 2025
commit 8a5df75e2c77f1a1718965a6c4482680841df7e6
5 changes: 3 additions & 2 deletions microsoft/testsuites/dpdk/common.py
Original file line number Diff line number Diff line change
@@ -68,10 +68,11 @@ def __init__(
# evaluate the list of package dependencies,
def install_required_packages(
self,
os: Posix,
node: Node,
extra_args: Union[List[str], None],
arch: Optional[CpuArchitecture] = None,
) -> None:
os = node.os
assert isinstance(os, Posix), (
"DependencyInstaller is not compatible with this OS: "
f"{os.information.vendor} {os.information.release}"
@@ -221,7 +222,7 @@ def _uninstall(self) -> None:
def _install_dependencies(self) -> None:
if self._os_dependencies is not None:
self._os_dependencies.install_required_packages(
self._os, extra_args=self._package_manager_extra_args, arch=self._arch
self._node, extra_args=self._package_manager_extra_args, arch=self._arch
)

# define how to check the installed version
Loading
Oops, something went wrong.