diff options
author | Thomas Huth <thuth@redhat.com> | 2022-03-29 12:28:08 +0200 |
---|---|---|
committer | Thomas Huth <thuth@redhat.com> | 2022-04-20 08:54:16 +0200 |
commit | b0dd0a3d74e9ed9532bd4a7724bdafffe7509462 (patch) | |
tree | 7161df73ad4663427cc17d7cf0c8785a28373d40 /tests/vm | |
parent | 1be5a765c08cee3a9587c8a8d3fc2ea247b13f9c (diff) | |
download | qemu-b0dd0a3d74e9ed9532bd4a7724bdafffe7509462.zip qemu-b0dd0a3d74e9ed9532bd4a7724bdafffe7509462.tar.gz qemu-b0dd0a3d74e9ed9532bd4a7724bdafffe7509462.tar.bz2 |
tests: Drop perl-Test-Harness from the CI containers / VMs
The perl test harness is not necessary anymore since commit 3d2f73ef75
("build: use "meson test" as the test harness"). Thus remove it from
tests/lcitool/projects/qemu.yml, run "make lcitool-refresh" and manually
clean the remaining docker / vm files that are not managed by lcitool yet.
Message-Id: <20220329102808.423681-1-thuth@redhat.com>
Reviewed-by: Philippe Mathieu-Daudé <f4bug@amsat.org>
Signed-off-by: Thomas Huth <thuth@redhat.com>
Diffstat (limited to 'tests/vm')
-rwxr-xr-x | tests/vm/centos.aarch64 | 3 | ||||
-rwxr-xr-x | tests/vm/fedora | 2 |
2 files changed, 2 insertions, 3 deletions
diff --git a/tests/vm/centos.aarch64 b/tests/vm/centos.aarch64 index 81c3004..96c450f 100755 --- a/tests/vm/centos.aarch64 +++ b/tests/vm/centos.aarch64 @@ -24,8 +24,7 @@ DEFAULT_CONFIG = { 'cpu' : "max", 'machine' : "virt,gic-version=max", 'install_cmds' : "yum install -y make ninja-build git python3 gcc gcc-c++ flex bison, "\ - "yum install -y glib2-devel pixman-devel zlib-devel, "\ - "yum install -y perl-Test-Harness, "\ + "yum install -y glib2-devel perl pixman-devel zlib-devel, "\ "alternatives --set python /usr/bin/python3, "\ "sudo dnf config-manager "\ "--add-repo=https://download.docker.com/linux/centos/docker-ce.repo,"\ diff --git a/tests/vm/fedora b/tests/vm/fedora index b977efe..92b78d6 100755 --- a/tests/vm/fedora +++ b/tests/vm/fedora @@ -35,7 +35,7 @@ class FedoraVM(basevm.BaseVM): 'gcc', 'binutils', 'make', 'ninja-build', # perl - 'perl-Test-Harness', + 'perl', # libs: usb '"pkgconfig(libusb-1.0)"', |