mirror of
https://github.com/GNS3/gns3-server.git
synced 2025-02-07 00:33:49 +02:00
Fix qemu tests on Linux
This commit is contained in:
parent
ab4c8665e4
commit
669295131b
@ -254,7 +254,6 @@ def test_set_qemu_path_windows(vm, tmpdir):
|
|||||||
assert vm.platform == "x86_64"
|
assert vm.platform == "x86_64"
|
||||||
|
|
||||||
|
|
||||||
@pytest.mark.skipif(sys.platform.startswith("linux") is False, reason="Supported only on linux")
|
|
||||||
def test_set_qemu_path_kvm_binary(vm, tmpdir, fake_qemu_binary):
|
def test_set_qemu_path_kvm_binary(vm, tmpdir, fake_qemu_binary):
|
||||||
|
|
||||||
bin_path = os.path.join(os.environ["PATH"], "qemu-kvm")
|
bin_path = os.path.join(os.environ["PATH"], "qemu-kvm")
|
||||||
@ -265,7 +264,7 @@ def test_set_qemu_path_kvm_binary(vm, tmpdir, fake_qemu_binary):
|
|||||||
# It should find the binary in the path
|
# It should find the binary in the path
|
||||||
vm.qemu_path = "qemu-kvm"
|
vm.qemu_path = "qemu-kvm"
|
||||||
|
|
||||||
assert vm.qemu_path == fake_qemu_binary
|
assert vm.qemu_path.endswith("qemu-kvm")
|
||||||
assert vm.platform == "x86_64"
|
assert vm.platform == "x86_64"
|
||||||
|
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user