mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-12-25 08:58:36 -07:00
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.