diff options
author | Thomas Huth <thuth@redhat.com> | 2024-07-19 11:50:31 +0200 |
---|---|---|
committer | Thomas Huth <thuth@redhat.com> | 2024-07-22 13:54:23 +0200 |
commit | 816d4201ea8c926fddf766b37abc3e5ff03bb0dd (patch) | |
tree | a2ee9a245891e677276c077dd898affa3bda0b0a /tests/avocado/intel_iommu.py | |
parent | 49269895a02fb05765e0d326cfcafa409fa4f642 (diff) | |
download | qemu-816d4201ea8c926fddf766b37abc3e5ff03bb0dd.zip qemu-816d4201ea8c926fddf766b37abc3e5ff03bb0dd.tar.gz qemu-816d4201ea8c926fddf766b37abc3e5ff03bb0dd.tar.bz2 |
tests/avocado: Move LinuxTest related code into a separate file
Only some few tests are using the LinuxTest class. Move the related
code into a separate file so that this does not pollute the main
namespace.
Message-ID: <20240719095031.32814-1-thuth@redhat.com>
Reviewed-by: Daniel P. Berrangé <berrange@redhat.com>
Reviewed-by: Philippe Mathieu-Daudé <philmd@linaro.org>
Tested-by: Philippe Mathieu-Daudé <philmd@linaro.org>
Signed-off-by: Thomas Huth <thuth@redhat.com>
Diffstat (limited to 'tests/avocado/intel_iommu.py')
-rw-r--r-- | tests/avocado/intel_iommu.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/avocado/intel_iommu.py b/tests/avocado/intel_iommu.py index 09e694b..008f214 100644 --- a/tests/avocado/intel_iommu.py +++ b/tests/avocado/intel_iommu.py @@ -10,7 +10,7 @@ import os from avocado import skipUnless -from avocado_qemu import LinuxTest +from avocado_qemu.linuxtest import LinuxTest @skipUnless(os.getenv('QEMU_TEST_FLAKY_TESTS'), 'Test is unstable on GitLab') |