ec76e0bb54
We use `fmf` and `tmt` test config to run qemu-sanity-check, similar to how its done in the spec file at the moment. Add gating.yml that requires these tests to pass before updates can be pushed Signed-off-by: Cole Robinson <crobinso@redhat.com>
21 lines
360 B
Plaintext
21 lines
360 B
Plaintext
# This is 'tmt' config format
|
|
# https://tmt.readthedocs.io/en/stable/spec.html
|
|
|
|
summary: Runtime test qemu
|
|
|
|
require:
|
|
- qemu
|
|
- qemu-sanity-check
|
|
|
|
/smoke:
|
|
# Make sure -help doesn't fail
|
|
test: |
|
|
set -eux
|
|
qemu-system-x86_64 -help
|
|
qemu-img -help
|
|
|
|
/qemu-sanity-check:
|
|
test: |
|
|
set -eux
|
|
qemu-sanity-check -v
|