diff options
author | Daniel P. Berrangé <berrange@redhat.com> | 2025-02-28 10:27:35 +0000 |
---|---|---|
committer | Thomas Huth <thuth@redhat.com> | 2025-03-06 08:10:04 +0100 |
commit | 188f71929520940048ec5ba85ea30588e0566e6e (patch) | |
tree | f8e73cef2bc844aa61d3070b2811c3a52c69a038 | |
parent | 8188356a260ca0201c42d128d8fa86f40160b513 (diff) | |
download | qemu-188f71929520940048ec5ba85ea30588e0566e6e.zip qemu-188f71929520940048ec5ba85ea30588e0566e6e.tar.gz qemu-188f71929520940048ec5ba85ea30588e0566e6e.tar.bz2 |
tests/functional: reduce tuxrun maxmem to work on 32-bit hosts
maxmem=4G is too large to address on 32-bit hosts, so reduce it
to 2G since the tuxrun tests don't actually need such an elevated
memory limit.
Signed-off-by: Daniel P. Berrangé <berrange@redhat.com>
Reviewed-by: Thomas Huth <thuth@redhat.com>
Reviewed-by: Richard Henderson <richard.henderson@linaro.org>
Message-ID: <20250228102738.3064045-5-berrange@redhat.com>
Signed-off-by: Thomas Huth <thuth@redhat.com>
-rwxr-xr-x | tests/functional/test_ppc64_tuxrun.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/functional/test_ppc64_tuxrun.py b/tests/functional/test_ppc64_tuxrun.py index 05c6162..e8f79c6 100755 --- a/tests/functional/test_ppc64_tuxrun.py +++ b/tests/functional/test_ppc64_tuxrun.py @@ -64,7 +64,7 @@ class TuxRunPPC64Test(TuxRunBaselineTest): ',"index":1,"id":"pci.1"}') self.vm.add_args('-device', '{"driver":"spapr-vscsi","id":"scsi1"' ',"reg":12288}') - self.vm.add_args('-m', '2G,slots=32,maxmem=4G', + self.vm.add_args('-m', '1G,slots=32,maxmem=2G', '-object', 'memory-backend-ram,id=ram1,size=1G', '-device', 'pc-dimm,id=dimm1,memdev=ram1') |