Misbah Anjum N
Misbah Anjum N
### Example config parameters Running stress on 3 vms: vm1: stress vm2: htxcmdline vm3: stress ``` stress_args_vm1 = --cpu 4 --io 4 --vm 2 --vm-bytes 256M stress_type_vm2 = htxcmdline_in_vms stress_cmds_htxcmdline_vm2...
### Running multivm_stress.py test ``` (1/1) type_specific.io-github-autotest-libvirt.multivm_cpustress.custom_host_events.custom_vm_events: STARTED (1/1) type_specific.io-github-autotest-libvirt.multivm_cpustress.custom_host_events.custom_vm_events: PASS (189.14 s) RESULTS : PASS 1 | ERROR 0 | FAIL 0 | SKIP 0 | WARN 0 |...
### Fixing invalid sequence Before patch ``` % inspekt style utils_test.py PEP8 disabled: E501,E265,W601,E402 utils_test.py:374:36: W605 invalid escape sequence '\d' utils_test.py:374:41: W605 invalid escape sequence '\d' utils_test.py:377:38: W605 invalid escape...
Updated the code based on the CI checks. Thanks.
### Explanation This particular piece of code checks the presence of "kernel_args" parameter in the output of `virt-install --boot help` ``` if has_sub_option("boot", "kernel_args") and kernel_args: result += 'kernel_args="%s",' %...
Config file ``` create_vm_libvirt = yes kernel_args = "root=/dev/sda2 console=hvc0,ttyS0,115200" kernel = "/boot/vmlinuz-6.11.0-rc3-gd7a5aa4b3c00" initrd = "/boot/initramfs-6.11.0-rc3-gd7a5aa4b3c00.img" ``` ### Before patch kernel_args is not passed in --boot ``` INFO | Running...
> Please check the after patch output and confirm. The following is the updated output after patch ``` [stdlog] 2024-08-26 01:56:40,570 avocado.virttest.libvirt_vm libvirt_vm L2183 INFO | Running libvirt command (reformatted):...
This patch is dependent on the PR: https://github.com/avocado-framework/avocado-vt/pull/3972
I have verified all scenarios with respect to the patch. Few examples are captured below: ## Scenario 1: run stress in 4 guests no stress_events status: 3 guest in crashed...
Explanation of check_call_traces function 1. Handling login timeout issue The function first tries to log into the guest. If unable to log into the guest, it retries logging into it...