1
0
mirror of https://github.com/GNS3/gns3-server synced 2025-05-22 08:48:52 +00:00

Fix tests

This commit is contained in:
grossmj 2025-05-14 17:19:18 +02:00
parent f2080979a1
commit 2cdaa1cd06
No known key found for this signature in database
GPG Key ID: 1E7DD6DBB53FF3D7

View File

@ -267,7 +267,7 @@ class QemuVM(BaseNode):
self._platform = "i386" self._platform = "i386"
else: else:
self._platform = re.sub(r'^qemu-system-(\w+).*$', r'\1', qemu_bin, flags=re.IGNORECASE) self._platform = re.sub(r'^qemu-system-(\w+).*$', r'\1', qemu_bin, flags=re.IGNORECASE)
if self._platform.split(".")[0] not in QemuPlatform: if self._platform.split(".")[0] not in list(QemuPlatform):
raise QemuError(f"Platform {self._platform} is unknown") raise QemuError(f"Platform {self._platform} is unknown")
log.info(f'QEMU VM "{self._name}" [{self._name}] has set the QEMU path to {qemu_path}') log.info(f'QEMU VM "{self._name}" [{self._name}] has set the QEMU path to {qemu_path}')