Build DPDK. Uses the already configured target. Assumes that the tarball has already been copied to and extracted on the SUT node.
(self)
| 236 | |
| 237 | @Node.skip_setup |
| 238 | def _build_dpdk(self) -> None: |
| 239 | """ |
| 240 | Build DPDK. Uses the already configured target. Assumes that the tarball has |
| 241 | already been copied to and extracted on the SUT node. |
| 242 | """ |
| 243 | self.main_session.build_dpdk( |
| 244 | self._env_vars, |
| 245 | MesonArgs(default_library="static", enable_kmods=True, libdir="lib"), |
| 246 | self._remote_dpdk_dir, |
| 247 | self.remote_dpdk_build_dir, |
| 248 | ) |
| 249 | |
| 250 | def build_dpdk_app(self, app_name: str, **meson_dpdk_args: str | bool) -> PurePath: |
| 251 | """ |
no test coverage detected