Go to file
David Abdurachmanov 300c04fb9b
Increase test timeout for riscv64
Summary of Failures:
283/782 qemu:qtest+qtest-i386 / qtest-i386/ahci-test                              TIMEOUT         60.12s   killed by signal 15 SIGTERM
315/782 qemu:qtest+qtest-i386 / qtest-i386/ide-test                               TIMEOUT         60.42s   killed by signal 15 SIGTERM
177/782 qemu:qtest+qtest-riscv32 / qtest-riscv32/qos-test                         TIMEOUT        120.26s   killed by signal 15 SIGTERM
178/782 qemu:qtest+qtest-riscv64 / qtest-riscv64/qos-test                         TIMEOUT        120.21s   killed by signal 15 SIGTERM
108/782 qemu:qtest+qtest-arm / qtest-arm/aspeed_smc-test                          TIMEOUT        360.11s   killed by signal 15 SIGTERM
124/782 qemu:qtest+qtest-sparc64 / qtest-sparc64/boot-serial-test                 TIMEOUT        360.20s   killed by signal 15 SIGTERM
102/782 qemu:qtest+qtest-i386 / qtest-i386/migration-test                         TIMEOUT        480.21s   killed by signal 15 SIGTERM
101/782 qemu:qtest+qtest-aarch64 / qtest-aarch64/migration-test                   TIMEOUT        480.28s   killed by signal 15 SIGTERM
105/782 qemu:qtest+qtest-x86_64 / qtest-x86_64/migration-test                     TIMEOUT        480.29s   killed by signal 15 SIGTERM

Signed-off-by: David Abdurachmanov <davidlt@rivosinc.com>
2024-09-12 15:54:43 +03:00
.fmf tests: Add qemu-sanity-check fedora CI job 2021-06-22 11:46:52 -04:00
plans tests: Add qemu-sanity-check fedora CI job 2021-06-22 11:46:52 -04:00
tests tests: Add qemu-sanity-check fedora CI job 2021-06-22 11:46:52 -04:00
.gitignore Add gpg verification of sources 2024-01-09 17:49:01 +00:00
.rpmlintrc Add .rpmlintrc to exclude some .spec lint 2022-09-07 12:12:58 -04:00
95-kvm-memlock.conf spec: More RHEL merging 2021-06-23 11:50:54 -04:00
99-qemu-guest-agent.rules 99-qemu-guest-agent.rules: fix warning reported by udevadm verify 2023-05-19 08:00:00 +00:00
0001-Disable-9p-local-tests-that-fail-on-copr-aarch64.patch Disable 9p local tests that fail on copr aarch64 2024-08-29 10:05:12 -04:00
bridge.conf fixes for -netdev bridge 2012-11-15 17:58:12 +01:00
gating.yaml Rename gating.yml -> gating.yaml 2021-07-15 11:22:56 -04:00
gpgkey-CEACC9E15534EBABB82D3FA03353C9CEF108B584.gpg Add gpg verification of sources 2024-01-09 17:49:01 +00:00
kvm-s390x.conf spec: Merge arch specific kvm.conf files from RHEL 2021-06-23 11:50:58 -04:00
kvm-x86.conf spec: Merge arch specific kvm.conf files from RHEL 2021-06-23 11:50:58 -04:00
kvm.conf spec: Merge arch specific kvm.conf files from RHEL 2021-06-23 11:50:58 -04:00
qemu-ga.sysconfig fix compilation, upgrade qemu-ga packaging based on RHEL 7 2017-11-28 18:07:46 +01:00
qemu-guest-agent.service fix compilation, upgrade qemu-ga packaging based on RHEL 7 2017-11-28 18:07:46 +01:00
qemu.spec Increase test timeout for riscv64 2024-09-12 15:54:43 +03:00
README.tests spec: More RHEL merging 2021-06-23 11:50:54 -04:00
rpminspect.yaml rpminspect: Another attempt to ignore badfuncs 2024-02-02 11:34:13 -05:00
sources New release qemu 9.1.0 GA 2024-09-05 13:49:58 -04:00
vhost.conf spec: More RHEL merging 2021-06-23 11:50:54 -04:00

qemu-kvm-tests README
=====================

The qemu-kvm-tests rpm contains tests that can be used to verify the
functionality of the installed qemu-kvm package

When installed, the files from this rpm will be arranged in the following
directory structure

tests-src/
├── README
├── scripts
│   ├── qemu.py
│   └── qmp
└── tests
    ├── acceptance
    ├── Makefile.include
    └── qemu-iotests

The tests/ directory within the tests-src/ directory is setup to remain a copy
of a subset of the tests/ directory from the QEMU source tree

The avocado_qemu tests and qemu-iotests, along with files required for the
execution of the avocado_qemu tests (scripts/qemu.py and scripts/qmp/) will be
installed in a new location - /usr/lib64/qemu-kvm/tests-src/

avocado_qemu tests:
The avocado_qemu tests can be executed by running the following avocado command:
avocado run -p qemu_bin=/usr/libexec/qemu-kvm /usr/lib64/qemu-kvm/tests/acceptance/
Avocado needs to be installed separately using either pip or from source as
Avocado is not being packaged for RHEL-8.

qemu-iotests:
symlinks to corresponding binaries need to be created for QEMU_PROG,
QEMU_IO_PROG, QEMU_IMG_PROG, and QEMU_NBD_PROG before the iotests can be
executed.

The primary purpose of this package is to make these tests available to be
executed as gating tests for the virt module in the RHEL-8 OSCI environment.