[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: [PATCH v5 3/4] avocado_qemu: Add SMMUv3 tests
From: |
Eric Auger |
Subject: |
Re: [PATCH v5 3/4] avocado_qemu: Add SMMUv3 tests |
Date: |
Tue, 6 Jul 2021 15:57:22 +0200 |
User-agent: |
Mozilla/5.0 (X11; Linux x86_64; rv:78.0) Gecko/20100101 Thunderbird/78.10.1 |
Hi Philippe,
On 7/6/21 3:34 PM, Philippe Mathieu-Daudé wrote:
> On 7/6/21 3:17 PM, Eric Auger wrote:
>> Add new tests checking the good behavior of the SMMUv3 protecting
>> 2 virtio pci devices (block and net). We check the guest boots and
>> we are able to install a package. Different guest configs are tested:
>> standard, passthrough an strict=0. This is tested with both fedora 31 and
>> 33. The former uses a 5.3 kernel without range invalidation whereas the
>> latter uses a 5.8 kernel that features range invalidation.
>>
>> Signed-off-by: Eric Auger <eric.auger@redhat.com>
>> Reviewed-by: Willian Rampazzo <willianr@redhat.com>
>> Reviewed-by: Wainer dos Santos Moschetta <wainersm@redhat.com>
>> Tested-by: Wainer dos Santos Moschetta <wainersm@redhat.com>
>>
>> ---
>>
>> v4 -> v5:
>> - Added the skipIf statement (William) and William's R-b
>> - added Wainer's R-b and T-b
>> ---
>> tests/acceptance/smmu.py | 133 +++++++++++++++++++++++++++++++++++++++
>> 1 file changed, 133 insertions(+)
>> create mode 100644 tests/acceptance/smmu.py
>> + def run_and_check(self):
>> + if self.kernel_path:
>> + self.vm.add_args('-kernel', self.kernel_path,
>> + '-append', self.kernel_params,
>> + '-initrd', self.initrd_path)
>> + self.launch_and_wait()
> IIUC above is the 'run' part and below is the 'check' part?
>
> So the check succeed if the VM booted, right?
>
>> + self.ssh_command('cat /proc/cmdline')
>> + self.ssh_command('dnf -y install numactl-devel')
For the test to succeed, the guests needs to boot, the ssh connection
needs to be established and the dnf command needs to complete.
See launch_and_wait() in __init__.py
Thanks
Eric
>> +
>> +
>> + # 5.3 kernel without RIL #
>> +
>> + def test_smmu_noril(self):
>> + """
>> + :avocado: tags=smmu_noril
>> + :avocado: tags=smmu_noril_tests
>> + :avocado: tags=distro_version:31
>> + """
>> + self.common_vm_setup()
>> + self.run_and_check()
[PATCH v5 4/4] avocado_qemu: Add Intel iommu tests, Eric Auger, 2021/07/06
[PATCH v5 1/4] avocado_qemu: Fix KNOWN_DISTROS map into the LinuxDistro class, Eric Auger, 2021/07/06