Skip to content

Commit

Permalink
updated memory to multiple of 1024
Browse files Browse the repository at this point in the history
  • Loading branch information
rh-jugraham committed Oct 18, 2024
1 parent b583d66 commit e74af87
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion libvirt/tests/cfg/multivm_stress/multi_vms_with_stress.cfg
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
- multi_vms_with_stress:
type = multi_vms_with_stress
memory = 4000000
memory = 4194304
vm_names = vm2 vm3
stress_args = '--cpu 4 --io 4 --vm 2 --vm-bytes 128M &'
2 changes: 1 addition & 1 deletion libvirt/tests/src/multivm_stress/multi_vms_with_stress.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ def run(test, params, env):
3. Start all vms and verify vms could be logged in normally
4. Verify all vms could be gracefully shutdown successfully
"""
memory = params.get("memory", "4000000")
memory = params.get("memory", "4194304")
main_vm_name = params.get("main_vm")
main_vm = env.get_vm(main_vm_name)
vm_names = params.get("vm_names").split()
Expand Down

0 comments on commit e74af87

Please sign in to comment.