Home
last modified time | relevance | path

Searched refs:LinuxTest (Results 1 – 8 of 8) sorted by relevance

/openbmc/qemu/tests/avocado/
H A Dboot_linux.py13 from avocado_qemu.linuxtest import LinuxTest
19 class BootLinuxX8664(LinuxTest):
65 class BootLinuxAarch64(LinuxTest):
90 class BootLinuxPPC64(LinuxTest):
117 class BootLinuxS390X(LinuxTest):
H A Dhotplug_cpu.py11 from avocado_qemu.linuxtest import LinuxTest
14 class HotPlugCPU(LinuxTest):
H A Dhotplug_blk.py12 from avocado_qemu.linuxtest import LinuxTest
15 class HotPlug(LinuxTest):
H A Dreplay_linux.py22 from avocado_qemu.linuxtest import LinuxTest
24 class ReplayLinux(LinuxTest):
39 super(LinuxTest, self).setUp()
H A Dsmmu.py14 from avocado_qemu.linuxtest import LinuxTest
17 class SMMU(LinuxTest):
H A Dintel_iommu.py13 from avocado_qemu.linuxtest import LinuxTest
16 class IntelIOMMU(LinuxTest):
/openbmc/qemu/docs/devel/testing/
H A Davocado.rst239 The ``avocado_qemu.LinuxTest`` base test class
242 The ``avocado_qemu.LinuxTest`` is further specialization of the
253 from avocado_qemu import LinuxTest
256 class SomeTest(LinuxTest):
262 Please refer to tests that use ``avocado_qemu.LinuxTest`` under
365 LinuxTest section in Attribute reference
369 class, the ``avocado_qemu.LinuxTest`` adds the following attributes:
446 LinuxTest section in Parameter reference
450 class, the ``avocado_qemu.LinuxTest`` adds the following parameters:
/openbmc/qemu/tests/avocado/avocado_qemu/
H A Dlinuxtest.py125 class LinuxTest(LinuxSSHMixIn, QemuSystemTest): class