diff options
Diffstat (limited to 'resources/libraries/python')
-rw-r--r-- | resources/libraries/python/Constants.py | 2 | ||||
-rw-r--r-- | resources/libraries/python/QemuUtils.py | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/resources/libraries/python/Constants.py b/resources/libraries/python/Constants.py index 5ffc7c04e3..99c1e87d55 100644 --- a/resources/libraries/python/Constants.py +++ b/resources/libraries/python/Constants.py @@ -179,7 +179,7 @@ class Constants: QEMU_VM_IMAGE = u"/var/lib/vm/vhost-nested.img" # QEMU VM DPDK path - QEMU_VM_DPDK = u"/opt/dpdk-19.02" + QEMU_VM_DPDK = u"/opt/dpdk-stable-19.08.2" # Docker container SUT image DOCKER_SUT_IMAGE_UBUNTU = u"snergster/csit-sut:latest" diff --git a/resources/libraries/python/QemuUtils.py b/resources/libraries/python/QemuUtils.py index 2b08429d84..9fb24106c6 100644 --- a/resources/libraries/python/QemuUtils.py +++ b/resources/libraries/python/QemuUtils.py @@ -63,7 +63,7 @@ class QemuUtils: dpdk_target = u"arm64-armv8a" if self._arch == u"aarch64" \ else u"x86_64-native" self._testpmd_path = f"{Constants.QEMU_VM_DPDK}/" \ - f"{dpdk_target}-linuxapp-gcc/app" + f"{dpdk_target}-linux-gcc/app" self._vm_info = { u"host": node[u"host"], u"type": NodeType.VM, |