mirror of
https://gitlab.com/qemu-project/qemu
synced 2024-11-02 20:37:48 +00:00
44c8a6ab45
On non-x86_64 host, if KVM is not available we get:
Traceback (most recent call last):
File "tests/vm/basevm.py", line 634, in main
vm = vmcls(args, config=config)
File "tests/vm/basevm.py", line 104, in __init__
mem = max(4, args.jobs)
TypeError: '>' not supported between instances of 'NoneType' and 'int'
Fix by always returning a -- not ideal but safe -- '1' value.
Fixes:
|
||
---|---|---|
.. | ||
aarch64vm.py | ||
basevm.py | ||
centos | ||
centos-8-aarch64.ks | ||
centos.aarch64 | ||
conf_example_aarch64.yml | ||
conf_example_x86.yml | ||
freebsd | ||
haiku.x86_64 | ||
Makefile.include | ||
netbsd | ||
openbsd | ||
README | ||
ubuntu.aarch64 | ||
ubuntuvm.py |
See docs/devel/testing.rst for help.